From ac62f948cc0775ea5c9af317f4d301f7f8143e11 Mon Sep 17 00:00:00 2001 From: Martin Kraemer Date: Fri, 30 Mar 2007 18:41:48 +0000 Subject: [PATCH] Thrift - remove client disconnect error Summary: It's fairly obnoxious. Reviewed By: Slee and Karl Test Plan: Revert Plan: revertible Notes: git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665069 13f79535-47bb-0310-9956-ffa450edef68 --- lib/cpp/src/server/TThreadPoolServer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cpp/src/server/TThreadPoolServer.cpp b/lib/cpp/src/server/TThreadPoolServer.cpp index c8a8693f2..69ca7d575 100644 --- a/lib/cpp/src/server/TThreadPoolServer.cpp +++ b/lib/cpp/src/server/TThreadPoolServer.cpp @@ -44,7 +44,7 @@ public: } catch (TTransportException& ttx) { // This is reasonably expected, client didn't send a full request so just // ignore him - cerr << "TThreadPoolServer client died: " << ttx.what() << endl; + //cerr << "TThreadPoolServer client died: " << ttx.what() << endl; } catch (TException& x) { cerr << "TThreadPoolServer exception: " << x.what() << endl; } catch (...) {