diff options
Diffstat (limited to 'cpp/src/Ice/InstrumentationI.cpp')
-rw-r--r-- | cpp/src/Ice/InstrumentationI.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/Ice/InstrumentationI.cpp b/cpp/src/Ice/InstrumentationI.cpp index c9f17cdd662..319d0a2842e 100644 --- a/cpp/src/Ice/InstrumentationI.cpp +++ b/cpp/src/Ice/InstrumentationI.cpp @@ -408,8 +408,9 @@ public: { os << _proxy->ice_endpoints(Ice::EndpointSeq()) << " [" << _operation << ']'; } - catch(const FixedProxyException&) + catch(const Exception&) { + // Either a fixed proxy or the the communicator is destroyed. os << _proxy->ice_getCommunicator()->identityToString(_proxy->ice_getIdentity()); os << " [" << _operation << ']'; } |