diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-05-09 14:20:04 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-05-09 14:20:04 +0000 |
commit | 3cbc6beabc2079727a70f845fc162a2072e97a02 (patch) | |
tree | c4ba2dde3970998f3137a8e4cfcf3ac1cc44da06 /cpp/src/IceGrid/NodeI.cpp | |
parent | Added identity string functions to communnicator Updated some copyright (diff) | |
download | ice-3cbc6beabc2079727a70f845fc162a2072e97a02.tar.bz2 ice-3cbc6beabc2079727a70f845fc162a2072e97a02.tar.xz ice-3cbc6beabc2079727a70f845fc162a2072e97a02.zip |
Cleaned up slice files, fixed IceGrid node with collocated registry warning
on shutdown.
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()); } } } |