aboutsummaryrefslogtreecommitdiffstats
path: root/lib/receiver
diff options
context:
space:
mode:
authorptrkrysik <ptrkrysik@gmail.com>2014-10-30 09:01:13 +0100
committerptrkrysik <ptrkrysik@gmail.com>2014-10-30 09:01:13 +0100
commita25bb7030ba3b16a14346c2a04f1db6a6bddd237 (patch)
treeae07a87a261a4ece18869b51177491f7a621f7ef /lib/receiver
parent62215e8ce0bf5c38934756f612eb0345429fe0b9 (diff)
Changed asser.h to output DCOUT messages to stderr
Diffstat (limited to 'lib/receiver')
-rw-r--r--lib/receiver/assert.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/receiver/assert.h b/lib/receiver/assert.h
index a80ae73..aa47e23 100644
--- a/lib/receiver/assert.h
+++ b/lib/receiver/assert.h
@@ -36,7 +36,7 @@
#define DCOUT(text) {}
#define OBJDCOUT(text) {}
#else
-#define DCOUT(text) { COUT(__FILE__ << ":" << __LINE__ << " " << text); }
+#define DCOUT(text) { CERR(text); }
#define OBJDCOUT(text) { DCOUT(this << " " << text); }
#endif
//@}