diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-05-29 15:27:39 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-05-29 15:27:39 +0000 |
commit | daa0fea0c0c0dc14adb48971589c260079997bea (patch) | |
tree | 7ea5052b6ccffff390cc5173c3f0986190cac82d /cpp/src/IceGrid/ServerI.cpp | |
parent | Fixed session test failures. (diff) | |
download | ice-daa0fea0c0c0dc14adb48971589c260079997bea.tar.bz2 ice-daa0fea0c0c0dc14adb48971589c260079997bea.tar.xz ice-daa0fea0c0c0dc14adb48971589c260079997bea.zip |
Fixes
Diffstat (limited to 'cpp/src/IceGrid/ServerI.cpp')
-rw-r--r-- | cpp/src/IceGrid/ServerI.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IceGrid/ServerI.cpp b/cpp/src/IceGrid/ServerI.cpp index 1cc75f30028..e697ba17b74 100644 --- a/cpp/src/IceGrid/ServerI.cpp +++ b/cpp/src/IceGrid/ServerI.cpp @@ -1351,7 +1351,7 @@ ServerI::destroy() catch(const string& msg) { Ice::Warning out(_node->getTraceLevels()->logger); - out << "removing server directory `" << _serverDir << "' failed:" << msg; + out << "removing server directory `" << _serverDir << "' failed: " << msg; } // @@ -1680,7 +1680,7 @@ ServerI::updateImpl(const string& application, const ServerDescriptorPtr& desc) catch(const Ice::LocalException& ex) { ostringstream os; - os << "unexpected exception while trying to find user account for user `" << user << "':" << ex; + os << "unexpected exception while trying to find user account for user `" << user << "':\n" << ex; throw os.str(); } } |