diff options
Diffstat (limited to 'cpp/src/Ice/IncomingAsync.cpp')
-rw-r--r-- | cpp/src/Ice/IncomingAsync.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/IncomingAsync.cpp b/cpp/src/Ice/IncomingAsync.cpp index 80cdc47997c..55999e70949 100644 --- a/cpp/src/Ice/IncomingAsync.cpp +++ b/cpp/src/Ice/IncomingAsync.cpp @@ -182,7 +182,7 @@ IceInternal::IncomingAsync::__exception(const std::exception& ex) if(_os.instance()->properties()->getPropertyAsIntWithDefault("Ice.Warn.Dispatch", 1) > 0) { - __warning(string("std::exception: ") + ex.what()); + __warning(string("std::exception1: ") + ex.what()); } if(_response) @@ -191,7 +191,7 @@ IceInternal::IncomingAsync::__exception(const std::exception& ex) _os.b.resize(headerSize + 4); // Dispatch status position. _os.write(static_cast<Byte>(DispatchUnknownException)); ostringstream str; - str << "std::exception: " << ex.what(); + str << "std::exception2: " << ex.what(); _os.write(str.str()); } |