File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -57,15 +57,16 @@ void bmct::error_trace()
57
57
switch (ui)
58
58
{
59
59
case ui_message_handlert::uit::PLAIN:
60
- std::cout << " \n " << " Counterexample:" << " \n " ;
61
- show_goto_trace (std::cout, ns, goto_trace);
60
+ status () << " Counterexample:" << eom;
61
+ show_goto_trace (status (), ns, goto_trace);
62
+ status () << eom;
62
63
break ;
63
64
64
65
case ui_message_handlert::uit::XML_UI:
65
66
{
66
67
xmlt xml;
67
68
convert (ns, goto_trace, xml);
68
- std::cout << xml << " \n " ;
69
+ status () << xml << eom ;
69
70
}
70
71
break ;
71
72
@@ -82,7 +83,7 @@ void bmct::error_trace()
82
83
result[" status" ]=json_stringt (" failed" );
83
84
jsont &json_trace=result[" trace" ];
84
85
convert (ns, goto_trace, json_trace);
85
- std::cout << " ,\n " << json_result;
86
+ status () << " ,\n " << json_result << eom ;
86
87
}
87
88
break ;
88
89
}
You can’t perform that action at this time.
0 commit comments