diff options
Diffstat (limited to 'cpp/src/IceGrid/NodeI.cpp')
-rw-r--r-- | cpp/src/IceGrid/NodeI.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/NodeI.cpp b/cpp/src/IceGrid/NodeI.cpp index 8d6b286aa33..779c44f547e 100644 --- a/cpp/src/IceGrid/NodeI.cpp +++ b/cpp/src/IceGrid/NodeI.cpp @@ -591,8 +591,11 @@ NodeI::stop() _session->destroy(); _session = 0; } - catch(const Ice::LocalException&) + catch(const Ice::LocalException& ex) { + ostringstream os; + os << "couldn't contact the IceGrid registry to destroy the node session:\n" << ex; + _traceLevels->logger->warning(os.str()); } } } |