Fix a compile bug introduced by r702644
authorDavid Reiss <dreiss@apache.org>
Tue, 7 Oct 2008 23:55:24 +0000 (23:55 +0000)
committerDavid Reiss <dreiss@apache.org>
Tue, 7 Oct 2008 23:55:24 +0000 (23:55 +0000)
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@702672 13f79535-47bb-0310-9956-ffa450edef68

lib/cpp/src/server/TNonblockingServer.cpp

index c0be8ef..06f11aa 100644 (file)
@@ -258,7 +258,7 @@ void TConnection::transition() {
           server_->addTask(task);
         } catch (IllegalStateException & ise) {
           // The ThreadManager is not ready to handle any more tasks (it's probably shutting down).
-          GlobalOutput.printf(stderr, "IllegalStateException: Server::process() %s", ise.what());
+          GlobalOutput.printf("IllegalStateException: Server::process() %s", ise.what());
           close();
         }