summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/NodeI.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2006-05-09 14:20:04 +0000
committerBenoit Foucher <benoit@zeroc.com>2006-05-09 14:20:04 +0000
commit3cbc6beabc2079727a70f845fc162a2072e97a02 (patch)
treec4ba2dde3970998f3137a8e4cfcf3ac1cc44da06 /cpp/src/IceGrid/NodeI.cpp
parentAdded identity string functions to communnicator Updated some copyright (diff)
downloadice-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.cpp5
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());
}
}
}