diff options
author | Michi Henning <michi@zeroc.com> | 2003-05-26 05:03:59 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2003-05-26 05:03:59 +0000 |
commit | e8a9783fcfd5f4a581e3c5495b2d482337c92803 (patch) | |
tree | 157577e7b9e6b6c57bcd47daa7cb8b0b8a937179 /cpp/src/Ice/TraceLevels.cpp | |
parent | BasicStream fixes (diff) | |
download | ice-e8a9783fcfd5f4a581e3c5495b2d482337c92803.tar.bz2 ice-e8a9783fcfd5f4a581e3c5495b2d482337c92803.tar.xz ice-e8a9783fcfd5f4a581e3c5495b2d482337c92803.zip |
Added Ice.Trace.Slicing property.
Diffstat (limited to 'cpp/src/Ice/TraceLevels.cpp')
-rw-r--r-- | cpp/src/Ice/TraceLevels.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp/src/Ice/TraceLevels.cpp b/cpp/src/Ice/TraceLevels.cpp index 3b2aacba8a0..16fd2e343cd 100644 --- a/cpp/src/Ice/TraceLevels.cpp +++ b/cpp/src/Ice/TraceLevels.cpp @@ -30,11 +30,14 @@ IceInternal::TraceLevels::TraceLevels(const PropertiesPtr& properties) : retry(0), retryCat("Retry"), location(0), - locationCat("Location") + locationCat("Location"), + slicing(0), + slicingCat("Slicing") { const string keyBase = "Ice.Trace."; const_cast<int&>(network) = properties->getPropertyAsInt(keyBase + networkCat); const_cast<int&>(protocol) = properties->getPropertyAsInt(keyBase + protocolCat); const_cast<int&>(retry) = properties->getPropertyAsInt(keyBase + retryCat); const_cast<int&>(location) = properties->getPropertyAsInt(keyBase + locationCat); + const_cast<int&>(slicing) = properties->getPropertyAsInt(keyBase + slicingCat); } |