summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2014-01-07 23:05:53 +0100
committerArne Schwabe <arne@rfc2549.org>2014-01-07 23:05:53 +0100
commit97deae46f78cc96540d207f452f2bd97cf540b13 (patch)
tree38c21bcacc568e9edf3574371f00f462d17198cd
parent6c31ffa5066e562477ed1a1982ca5389cdf93306 (diff)
Up number of cached log entries
-rw-r--r--src/de/blinkt/openvpn/core/VpnStatus.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/de/blinkt/openvpn/core/VpnStatus.java b/src/de/blinkt/openvpn/core/VpnStatus.java
index 1a3a7a26..d6ce0e29 100644
--- a/src/de/blinkt/openvpn/core/VpnStatus.java
+++ b/src/de/blinkt/openvpn/core/VpnStatus.java
@@ -64,6 +64,9 @@ public class VpnStatus {
logException(LogLevel.ERROR, context, e);
}
+ private static final int MAXLOGENTRIES = 1000;
+
+ public static final String MANAGMENT_PREFIX = "M:";
public enum ConnectionStatus {
LEVEL_CONNECTED,
@@ -292,9 +295,6 @@ public class VpnStatus {
}
}
- private static final int MAXLOGENTRIES = 500;
-
- public static final String MANAGMENT_PREFIX = "M:";
public interface LogListener {