summaryrefslogtreecommitdiff
path: root/lib/debug.cpp
diff options
context:
space:
mode:
authorJosh Blum2013-06-07 07:34:11 -0700
committerJosh Blum2013-06-07 07:34:11 -0700
commitb449b950f0189a95adacb07af139489ab44b05fd (patch)
tree801b42b2b550ccba7545c85d876b676bcf9a4e97 /lib/debug.cpp
parent34134c01d327cf2f858eec52e6fc36f0edec0191 (diff)
downloadsandhi-b449b950f0189a95adacb07af139489ab44b05fd.tar.gz
sandhi-b449b950f0189a95adacb07af139489ab44b05fd.tar.bz2
sandhi-b449b950f0189a95adacb07af139489ab44b05fd.zip
gras: less obnoxious print about debug asserts
Diffstat (limited to 'lib/debug.cpp')
-rw-r--r--lib/debug.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/debug.cpp b/lib/debug.cpp
index df6e15d..3a0bfc9 100644
--- a/lib/debug.cpp
+++ b/lib/debug.cpp
@@ -20,11 +20,7 @@ struct DebugAssertPrinter
{
DebugAssertPrinter(void)
{
- std::cerr
- << "###################################################\n"
- << "## ATTENTION!!! The debug asserts are enabled\n"
- << "###################################################\n"
- << std::flush;
+ std::cerr << ">>> GRAS: The debug asserts are enabled. <<<" << std::endl;
}
};