fix(library/blast/trace): avoid unnecessary trace information
This commit is contained in:
parent
96b37241bd
commit
d7150f210c
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ void trace_action(char const * a) {
|
|||
}
|
||||
|
||||
void trace_curr_state_if(action_result r) {
|
||||
if (g_trace && !failed(r))
|
||||
if (g_trace && !failed(r) && !solved(r))
|
||||
trace_curr_state();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue