summaryrefslogtreecommitdiff
path: root/src/de/blinkt/openvpn
diff options
context:
space:
mode:
Diffstat (limited to 'src/de/blinkt/openvpn')
-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 {