Skip to content

Commit 75f021c

Browse files
committed
Print current depth in BMC progress debug logging
1 parent 65f0ec0 commit 75f021c

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/cbmc/symex_bmc.cpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,8 @@ void symex_bmct::symex_step(
3838

3939
if(!source_location.is_nil() && last_source_location!=source_location)
4040
{
41-
log.debug() << "BMC at file " << source_location.get_file() << " line "
42-
<< source_location.get_line() << " function "
43-
<< source_location.get_function() << log.eom;
41+
log.debug() << "BMC at " << source_location.as_string()
42+
<< " (depth " << state.depth << ')' << log.eom;
4443

4544
last_source_location=source_location;
4645
}

0 commit comments

Comments
 (0)