Skip to content

Commit 03af616

Browse files
Output final classpath on debug level
1 parent 1ba2280 commit 03af616

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

jbmc/src/java_bytecode/java_class_loader.cpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,13 @@ Author: Daniel Kroening, [email protected]
1919
java_class_loadert::parse_tree_with_overlayst &java_class_loadert::operator()(
2020
const irep_idt &class_name)
2121
{
22+
debug() << "Classpath:";
23+
for(const auto &entry : classpath_entries)
24+
{
25+
debug() << "\n " << entry.path;
26+
}
27+
debug() << messaget::eom;
28+
2229
std::stack<irep_idt> queue;
2330
// Always require java.lang.Object, as it is the base of
2431
// internal classes such as array types.

0 commit comments

Comments
 (0)