summaryrefslogtreecommitdiff
path: root/src/util/output.cpp
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2012-09-21 10:24:08 +0000
committerMorgan Deters <mdeters@gmail.com>2012-09-21 10:24:08 +0000
commit9c543757e459bfae5ce1254322212f72af0d37a4 (patch)
tree710ae09a33cef2b8d80d1c5ceae9048301c8d460 /src/util/output.cpp
parent107988db066b3265c1cb80662e06f240def2a2c0 (diff)
better verbosity support (so it's sensible when the library is used via the API)
(this commit was certified error- and warning-free by the test-and-commit script.)
Diffstat (limited to 'src/util/output.cpp')
-rw-r--r--src/util/output.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/output.cpp b/src/util/output.cpp
index 5acee360f..692f3b8d1 100644
--- a/src/util/output.cpp
+++ b/src/util/output.cpp
@@ -37,8 +37,8 @@ const int CVC4ostream::s_indentIosIndex = ios_base::xalloc();
DebugC DebugChannel CVC4_PUBLIC (&cout);
WarningC WarningChannel CVC4_PUBLIC (&cerr);
MessageC MessageChannel CVC4_PUBLIC (&cout);
-NoticeC NoticeChannel CVC4_PUBLIC (&cout);
-ChatC ChatChannel CVC4_PUBLIC (&cout);
+NoticeC NoticeChannel CVC4_PUBLIC (&null_os);
+ChatC ChatChannel CVC4_PUBLIC (&null_os);
TraceC TraceChannel CVC4_PUBLIC (&cout);
std::ostream DumpOutC::dump_cout(cout.rdbuf());// copy cout stream buffer
DumpOutC DumpOutChannel CVC4_PUBLIC (&DumpOutC::dump_cout);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback