summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/retry/Client.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2012-09-10 08:47:58 +0200
committerBenoit Foucher <benoit@zeroc.com>2012-09-10 08:47:58 +0200
commit9560b7d54ec4411f0605a3b53997835599f70ea2 (patch)
treec40611c772a7a4f1af4ea0df5d487305dded456d /cpp/test/Ice/retry/Client.cpp
parentFix (diff)
downloadice-9560b7d54ec4411f0605a3b53997835599f70ea2.tar.bz2
ice-9560b7d54ec4411f0605a3b53997835599f70ea2.tar.xz
ice-9560b7d54ec4411f0605a3b53997835599f70ea2.zip
Fixed communicator flushBatchRequests to allow tracing
Diffstat (limited to 'cpp/test/Ice/retry/Client.cpp')
-rw-r--r--cpp/test/Ice/retry/Client.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/test/Ice/retry/Client.cpp b/cpp/test/Ice/retry/Client.cpp
index f917158a746..95925cb90e4 100644
--- a/cpp/test/Ice/retry/Client.cpp
+++ b/cpp/test/Ice/retry/Client.cpp
@@ -49,8 +49,9 @@ main(int argc, char* argv[])
communicator = Ice::initialize(argc, argv, initData);
status = run(argc, argv, communicator);
}
- catch(const Ice::Exception&)
+ catch(const Ice::Exception& ex)
{
+ cerr << ex << endl;
status = EXIT_FAILURE;
}