diff options
author | Arne Schwabe <arne@rfc2549.org> | 2014-01-07 23:05:53 +0100 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2014-01-07 23:05:53 +0100 |
commit | 97deae46f78cc96540d207f452f2bd97cf540b13 (patch) | |
tree | 38c21bcacc568e9edf3574371f00f462d17198cd /src/de/blinkt | |
parent | 6c31ffa5066e562477ed1a1982ca5389cdf93306 (diff) |
Up number of cached log entries
Diffstat (limited to 'src/de/blinkt')
-rw-r--r-- | src/de/blinkt/openvpn/core/VpnStatus.java | 6 |
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 { |