fix(library/blast/simple_strategy): tracing
This commit is contained in:
parent
ca4c078089
commit
6c038626f8
1 changed files with 3 additions and 1 deletions
|
@ -23,7 +23,9 @@ class simple_strategy {
|
|||
enum status { NoAction, ClosedBranch, Continue };
|
||||
|
||||
void display_msg(char const * msg) {
|
||||
ios().get_diagnostic_channel() << msg << "\n\n";
|
||||
if (m_config.m_trace) {
|
||||
ios().get_diagnostic_channel() << msg << "\n\n";
|
||||
}
|
||||
}
|
||||
|
||||
void display_action(char const * name) {
|
||||
|
|
Loading…
Reference in a new issue