diff options
author | Marc Laukien <marc@zeroc.com> | 2002-04-29 20:29:41 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-04-29 20:29:41 +0000 |
commit | 0d2c8bfb90641ee774b1924de7565135a76da264 (patch) | |
tree | adc6c7af99f3752c5b8c3c4baf666aab8f4d4894 /cpp/src | |
parent | thread pool lazy init fix (diff) | |
download | ice-0d2c8bfb90641ee774b1924de7565135a76da264.tar.bz2 ice-0d2c8bfb90641ee774b1924de7565135a76da264.tar.xz ice-0d2c8bfb90641ee774b1924de7565135a76da264.zip |
minor fix
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Glacier/ClientBlobject.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/Glacier/ClientBlobject.cpp b/cpp/src/Glacier/ClientBlobject.cpp index cec339c1829..7eca7e65bbd 100644 --- a/cpp/src/Glacier/ClientBlobject.cpp +++ b/cpp/src/Glacier/ClientBlobject.cpp @@ -72,7 +72,8 @@ Glacier::ClientBlobject::ice_invoke(const std::vector<Byte>& inParams, std::vect if (_traceLevel > 0) { Trace out(_logger, "Glacier"); - out << "rejecting request. identity: " << identityToString(current.identity); + out << "rejecting request\n"; + out << "identity: " << identityToString(current.identity); } ObjectNotExistException ex(__FILE__, __LINE__); ex.identity = current.identity; |