summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/AllocatableObjectCache.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/IceGrid/AllocatableObjectCache.cpp')
-rw-r--r--cpp/src/IceGrid/AllocatableObjectCache.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/cpp/src/IceGrid/AllocatableObjectCache.cpp b/cpp/src/IceGrid/AllocatableObjectCache.cpp
index 78bac949bbf..9315725edf0 100644
--- a/cpp/src/IceGrid/AllocatableObjectCache.cpp
+++ b/cpp/src/IceGrid/AllocatableObjectCache.cpp
@@ -273,7 +273,8 @@ AllocatableObjectEntry::allocated(const SessionIPtr& session)
if(traceLevels && traceLevels->object > 1)
{
Ice::Trace out(traceLevels->logger, traceLevels->objectCat);
- out << "object `" << _info.proxy << "' allocated by `" << session->getId() << "' (" << _count << ")";
+ out << "object `" << _info.proxy->ice_toString() << "' allocated by `" << session->getId() << "' (" << _count
+ << ")";
}
Glacier2::SessionControlPrx ctl = session->getSessionControl();
@@ -317,7 +318,8 @@ AllocatableObjectEntry::released(const SessionIPtr& session)
if(traceLevels && traceLevels->object > 1)
{
Ice::Trace out(traceLevels->logger, traceLevels->objectCat);
- out << "object `" << _info.proxy << "' released by `" << session->getId() << "' (" << _count << ")";
+ out << "object `" << _info.proxy->ice_toString() << "' released by `" << session->getId() << "' (" << _count
+ << ")";
}
}