diff options
Diffstat (limited to 'cppe/src/IceE/TraceLevels.cpp')
-rw-r--r-- | cppe/src/IceE/TraceLevels.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/cppe/src/IceE/TraceLevels.cpp b/cppe/src/IceE/TraceLevels.cpp index 0f4872fe898..1dc8683ba4d 100644 --- a/cppe/src/IceE/TraceLevels.cpp +++ b/cppe/src/IceE/TraceLevels.cpp @@ -25,14 +25,11 @@ IceInternal::TraceLevels::TraceLevels(const PropertiesPtr& properties) : retry(0), retryCat("Retry"), location(0), - locationCat("Location"), - slicing(0), - slicingCat("Slicing") + locationCat("Location") { const string keyBase = "IceE.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); } |