We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65f0ec0 commit 75f021cCopy full SHA for 75f021c
src/cbmc/symex_bmc.cpp
@@ -38,9 +38,8 @@ void symex_bmct::symex_step(
38
39
if(!source_location.is_nil() && last_source_location!=source_location)
40
{
41
- log.debug() << "BMC at file " << source_location.get_file() << " line "
42
- << source_location.get_line() << " function "
43
- << source_location.get_function() << log.eom;
+ log.debug() << "BMC at " << source_location.as_string()
+ << " (depth " << state.depth << ')' << log.eom;
44
45
last_source_location=source_location;
46
}
0 commit comments