summaryrefslogtreecommitdiff
path: root/qpid/cpp/src
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2007-12-14 17:10:16 +0000
committerAlan Conway <aconway@apache.org>2007-12-14 17:10:16 +0000
commit49c8b9c165b986d7baf17fab9e264c7525ab41c8 (patch)
tree21453233353be7e0682bc2925ca8e8d1538beaaa /qpid/cpp/src
parent5c888c4dc9ff7c19f733fe1304ca5b46c3873ee0 (diff)
downloadqpid-python-49c8b9c165b986d7baf17fab9e264c7525ab41c8.tar.gz
Log to stderr by default
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@604232 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
-rw-r--r--qpid/cpp/src/qpid/log/Options.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/log/Options.cpp b/qpid/cpp/src/qpid/log/Options.cpp
index 72dbf39ca8..41a15dcf9f 100644
--- a/qpid/cpp/src/qpid/log/Options.cpp
+++ b/qpid/cpp/src/qpid/log/Options.cpp
@@ -28,7 +28,7 @@ using namespace std;
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;