Changed asser.h to output DCOUT messages to stderr
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
 //@}