diff options
author | Alan Conway <aconway@apache.org> | 2006-11-29 14:36:08 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2006-11-29 14:36:08 +0000 |
commit | 3bb9f37e40cb72d88cf6885bc80f93da3c3231ed (patch) | |
tree | 6d1cc162a39c183ecfea71181a7dbb0449542bff /qpid/cpp/test/client/echo_service.cpp | |
parent | 89589a150ca7a9c8166ca86af30bbe1159bc0405 (diff) | |
download | qpid-python-3bb9f37e40cb72d88cf6885bc80f93da3c3231ed.tar.gz |
Posix EventChannel implementation using epoll. Placeholder for kevents.
Dynamic thread pool EventChannelThreads to serve EventChannel.
Misc cleanup/enhancements.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@480582 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/test/client/echo_service.cpp')
-rw-r--r-- | qpid/cpp/test/client/echo_service.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/test/client/echo_service.cpp b/qpid/cpp/test/client/echo_service.cpp index f0aa49fd4b..3df3da0b86 100644 --- a/qpid/cpp/test/client/echo_service.cpp +++ b/qpid/cpp/test/client/echo_service.cpp @@ -107,7 +107,7 @@ int main(int argc, char** argv){ connection.close(); } catch(qpid::QpidError error) { - std::cout << "Error [" << error.code << "] " << error.msg << " (" << error.file << ":" << error.line << ")" << std::endl; + std::cout << error.what() << std::endl; } } else { try { @@ -133,7 +133,7 @@ int main(int argc, char** argv){ connection.close(); } catch(qpid::QpidError error) { - std::cout << "Error [" << error.code << "] " << error.msg << " (" << error.file << ":" << error.line << ")" << std::endl; + std::cout << error.what() << std::endl; } } } |