diff options
Diffstat (limited to 'cs/src/Ice/TraceLevels.cs')
-rwxr-xr-x | cs/src/Ice/TraceLevels.cs | 54 |
1 files changed, 27 insertions, 27 deletions
diff --git a/cs/src/Ice/TraceLevels.cs b/cs/src/Ice/TraceLevels.cs index 7432c4afda8..28d3a3b72ef 100755 --- a/cs/src/Ice/TraceLevels.cs +++ b/cs/src/Ice/TraceLevels.cs @@ -12,33 +12,33 @@ namespace IceInternal public sealed class TraceLevels { - internal TraceLevels(Ice.Properties properties) - { - networkCat = "Network"; - protocolCat = "Protocol"; - retryCat = "Retry"; - locationCat = "Location"; - slicingCat = "Slicing"; - - string keyBase = "Ice.Trace."; - - network = properties.getPropertyAsInt(keyBase + networkCat); - protocol = properties.getPropertyAsInt(keyBase + protocolCat); - retry = properties.getPropertyAsInt(keyBase + retryCat); - location = properties.getPropertyAsInt(keyBase + locationCat); - slicing = properties.getPropertyAsInt(keyBase + slicingCat); - } - - public readonly int network; - public readonly string networkCat; - public readonly int protocol; - public readonly string protocolCat; - public readonly int retry; - public readonly string retryCat; - public readonly int location; - public readonly string locationCat; - public readonly int slicing; - public readonly string slicingCat; + internal TraceLevels(Ice.Properties properties) + { + networkCat = "Network"; + protocolCat = "Protocol"; + retryCat = "Retry"; + locationCat = "Location"; + slicingCat = "Slicing"; + + string keyBase = "Ice.Trace."; + + network = properties.getPropertyAsInt(keyBase + networkCat); + protocol = properties.getPropertyAsInt(keyBase + protocolCat); + retry = properties.getPropertyAsInt(keyBase + retryCat); + location = properties.getPropertyAsInt(keyBase + locationCat); + slicing = properties.getPropertyAsInt(keyBase + slicingCat); + } + + public readonly int network; + public readonly string networkCat; + public readonly int protocol; + public readonly string protocolCat; + public readonly int retry; + public readonly string retryCat; + public readonly int location; + public readonly string locationCat; + public readonly int slicing; + public readonly string slicingCat; } } |