diff options
Diffstat (limited to 'cpp/src/Ice/TraceUtil.cpp')
-rw-r--r-- | cpp/src/Ice/TraceUtil.cpp | 26 |
1 files changed, 3 insertions, 23 deletions
diff --git a/cpp/src/Ice/TraceUtil.cpp b/cpp/src/Ice/TraceUtil.cpp index fc507db443d..a42371cd86e 100644 --- a/cpp/src/Ice/TraceUtil.cpp +++ b/cpp/src/Ice/TraceUtil.cpp @@ -71,25 +71,10 @@ static void printRequestHeader(ostream& s, BasicStream& stream) { Identity identity; - string facet; - bool gotProxy; - stream.read(gotProxy); - s << "\naddressing = " << static_cast<int>(gotProxy); - if (gotProxy) - { - s << " (proxy)"; - ObjectPrx proxy; - stream.read(proxy); - identity = proxy->ice_getIdentity(); - facet = proxy->ice_getFacet(); - } - else - { - s << " (identity)"; - identity.__read(&stream); - stream.read(facet); - } + identity.__read(&stream); s << "\nidentity = " << identity; + string facet; + stream.read(facet); s << "\nfacet = " << facet; string operation; stream.read(operation); @@ -214,11 +199,6 @@ IceInternal::traceReply(const char* heading, const BasicStream& str, const ::Ice s << "(location forward)"; break; } - case DispatchProxyRequested: - { - s << "(proxy requested)"; - break; - } case DispatchObjectNotExist: { s << "(object not exist)"; |