summaryrefslogtreecommitdiff
path: root/java/src/IceInternal/TraceLevels.java
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2002-06-28 19:20:18 +0000
committerBenoit Foucher <benoit@zeroc.com>2002-06-28 19:20:18 +0000
commit75ac12c02d537f38b03567e406cbeccf29226fe0 (patch)
tree4add4682e2aa8edd9c58f1a23ad3f0ccc8336d02 /java/src/IceInternal/TraceLevels.java
parentReplaced invalid struct name Struct with Structure. (diff)
downloadice-75ac12c02d537f38b03567e406cbeccf29226fe0.tar.bz2
ice-75ac12c02d537f38b03567e406cbeccf29226fe0.tar.xz
ice-75ac12c02d537f38b03567e406cbeccf29226fe0.zip
Merged location branch.
Diffstat (limited to 'java/src/IceInternal/TraceLevels.java')
-rw-r--r--java/src/IceInternal/TraceLevels.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/java/src/IceInternal/TraceLevels.java b/java/src/IceInternal/TraceLevels.java
index 22c6883e8d0..b00e65e7b74 100644
--- a/java/src/IceInternal/TraceLevels.java
+++ b/java/src/IceInternal/TraceLevels.java
@@ -18,6 +18,7 @@ public final class TraceLevels
protocolCat = "Protocol";
retryCat = "Retry";
securityCat = "Security";
+ locationCat = "Location";
final String keyBase = "Ice.Trace.";
@@ -25,6 +26,7 @@ public final class TraceLevels
protocol = properties.getPropertyAsInt(keyBase + protocolCat);
retry = properties.getPropertyAsInt(keyBase + retryCat);
security = properties.getPropertyAsInt(keyBase + securityCat);
+ location = properties.getPropertyAsInt(keyBase + locationCat);
}
final public int network;
@@ -35,4 +37,6 @@ public final class TraceLevels
final public String retryCat;
final public int security;
final public String securityCat;
+ final public int location;
+ final public String locationCat;
}