diff options
author | Bernard Normier <bernard@zeroc.com> | 2007-12-04 19:04:37 -0500 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2007-12-04 19:04:37 -0500 |
commit | 8acb2a1032ace3e07f4939e9c7ef7b449f8b50b3 (patch) | |
tree | eb8d43058cb47b13693880e622715f6ff13e0318 /cpp/src/IceBox/ServiceManagerI.cpp | |
parent | Fix to not retry batch requests (even idempotent ones) (diff) | |
download | ice-8acb2a1032ace3e07f4939e9c7ef7b449f8b50b3.tar.bz2 ice-8acb2a1032ace3e07f4939e9c7ef7b449f8b50b3.tar.xz ice-8acb2a1032ace3e07f4939e9c7ef7b449f8b50b3.zip |
New IceGrid/icebox demos and various IceBox fixes
Diffstat (limited to 'cpp/src/IceBox/ServiceManagerI.cpp')
-rw-r--r-- | cpp/src/IceBox/ServiceManagerI.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IceBox/ServiceManagerI.cpp b/cpp/src/IceBox/ServiceManagerI.cpp index 7b5c92c9161..54707394347 100644 --- a/cpp/src/IceBox/ServiceManagerI.cpp +++ b/cpp/src/IceBox/ServiceManagerI.cpp @@ -223,7 +223,7 @@ IceBox::ServiceManagerI::addObserver(const ServiceObserverPrx& observer, const I if(_traceServiceObserver >= 1) { Trace out(_logger, "IceBox.ServiceObserver"); - out << "Added service observer: " << _communicator->proxyToString(observer); + out << "Added service observer " << _communicator->proxyToString(observer); } vector<string> activeServices; @@ -890,7 +890,7 @@ IceBox::ServiceManagerI::observerRemoved(const ServiceObserverPrx& observer, con if(_traceServiceObserver >= 1) { Trace out(_logger, "IceBox.ServiceObserver"); - out << "Removed service observer: " << _communicator->proxyToString(observer) + out << "Removed service observer " << _communicator->proxyToString(observer) << "\nafter catching " << ex.what(); } } |