You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ac...@apache.org on 2007/12/14 18:10:17 UTC

svn commit: r604232 - /incubator/qpid/trunk/qpid/cpp/src/qpid/log/Options.cpp

Author: aconway
Date: Fri Dec 14 09:10:16 2007
New Revision: 604232

URL: http://svn.apache.org/viewvc?rev=604232&view=rev
Log:
Log to stderr by default

Modified:
    incubator/qpid/trunk/qpid/cpp/src/qpid/log/Options.cpp

Modified: incubator/qpid/trunk/qpid/cpp/src/qpid/log/Options.cpp
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/src/qpid/log/Options.cpp?rev=604232&r1=604231&r2=604232&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/cpp/src/qpid/log/Options.cpp (original)
+++ incubator/qpid/trunk/qpid/cpp/src/qpid/log/Options.cpp Fri Dec 14 09:10:16 2007
@@ -28,7 +28,7 @@
 Options::Options(const std::string& name) : qpid::Options(name),
     time(true), level(true), thread(false), source(false), function(false), trace(false)
 {
-    outputs.push_back("stdout");
+    outputs.push_back("stderr");
     selectors.push_back("error+");
 
     ostringstream levels;