diff options
author | Mark Spruiell <mes@zeroc.com> | 2007-03-30 18:17:00 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2007-03-30 18:17:00 +0000 |
commit | 6581164e6dc3c5fcd7150f6b2a080355a853bda0 (patch) | |
tree | 3241c8479e06ebf9297f4e8da2774ae20e70acad /cpp | |
parent | file Server.cpp was initially added on branch R3_2_branch. (diff) | |
download | ice-6581164e6dc3c5fcd7150f6b2a080355a853bda0.tar.bz2 ice-6581164e6dc3c5fcd7150f6b2a080355a853bda0.tar.xz ice-6581164e6dc3c5fcd7150f6b2a080355a853bda0.zip |
tracing fixes
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/src/Freeze/EvictorI.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/cpp/src/Freeze/EvictorI.cpp b/cpp/src/Freeze/EvictorI.cpp index a3bffc1a2bc..685eebde6ce 100644 --- a/cpp/src/Freeze/EvictorI.cpp +++ b/cpp/src/Freeze/EvictorI.cpp @@ -600,6 +600,7 @@ Freeze::EvictorI::addFacet(const ObjectPtr& servant, const Identity& ident, cons { out << " with facet \"" << facet << "\""; } + out << " to Db \"" << _filename << "\""; } ObjectPrx obj = _adapter->createProxy(ident); @@ -729,6 +730,7 @@ Freeze::EvictorI::removeFacet(const Identity& ident, const string& facet) { out << " with facet \"" << facet << "\""; } + out << " from Db \"" << _filename << "\""; } return servant; } @@ -1089,8 +1091,8 @@ Freeze::EvictorI::locateImpl(const Current& current, LocalObjectPtr& cookie) if(_trace >= 2) { Trace out(_communicator->getLogger(), "Freeze.Evictor"); - out << "locate could not find \"" << _communicator->identityToString(current.id) << "\" in database \"" - << current.facet << "\""; + out << "locate could not find \"" << _communicator->identityToString(current.id) << "\" in Db \"" + << _filename << "\""; } return 0; } @@ -1124,8 +1126,8 @@ Freeze::EvictorI::locateImpl(const Current& current, LocalObjectPtr& cookie) if(_trace >= 2) { Trace out(_communicator->getLogger(), "Freeze.Evictor"); - out << "locate found \"" << _communicator->identityToString(current.id) << "\" in database \"" - << current.facet << "\""; + out << "locate found \"" << _communicator->identityToString(current.id) << "\" in Db \"" + << _filename << "\""; } fixEvictPosition(element); |