diff options
Diffstat (limited to 'cpp/src/Ice/TraceUtil.cpp')
-rw-r--r-- | cpp/src/Ice/TraceUtil.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp/src/Ice/TraceUtil.cpp b/cpp/src/Ice/TraceUtil.cpp index f0ef9e82316..089cf26a9a0 100644 --- a/cpp/src/Ice/TraceUtil.cpp +++ b/cpp/src/Ice/TraceUtil.cpp @@ -71,7 +71,7 @@ printRequestHeader(ostream& s, BasicStream& stream) { string identity; string facet; - Byte gotProxy; + bool gotProxy; stream.read(gotProxy); s << "\naddressing = " << static_cast<int>(gotProxy); if (gotProxy) @@ -93,6 +93,9 @@ printRequestHeader(ostream& s, BasicStream& stream) string operation; stream.read(operation); s << "\noperation = " << operation; + bool nonmutating; + stream.read(nonmutating); + s << "\nnonmutating = " << (nonmutating ? "true" : "false"); Int sz; stream.read(sz); s << "\ncontext = "; |