diff options
author | Arne Schwabe <arne@rfc2549.org> | 2013-11-22 16:03:53 +0100 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2013-11-22 16:03:53 +0100 |
commit | c1571bb90a4449cf3d359392b6093079ab705721 (patch) | |
tree | 197c3841646fc8138a1b5ecfb57a9411353bc751 /src/de/blinkt/openvpn | |
parent | 0163093730b49291cd4c6353cee05f4ca780e948 (diff) |
Fix showing log for —verb > 4
Diffstat (limited to 'src/de/blinkt/openvpn')
-rw-r--r-- | src/de/blinkt/openvpn/fragments/LogFragment.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/de/blinkt/openvpn/fragments/LogFragment.java b/src/de/blinkt/openvpn/fragments/LogFragment.java index e049b8ba..40f9dfb6 100644 --- a/src/de/blinkt/openvpn/fragments/LogFragment.java +++ b/src/de/blinkt/openvpn/fragments/LogFragment.java @@ -340,7 +340,7 @@ public class LogFragment extends ListFragment implements StateListener, SeekBar. currentLevelEntries.clear(); for(LogItem li: allEntries) { if (li.getVerbosityLevel() <= mLogLevel || - li.getVerbosityLevel() >= VpnProfile.MAXLOGLEVEL) + mLogLevel == VpnProfile.MAXLOGLEVEL) currentLevelEntries.add(li); } } |