diff options
author | Tomás Touceda <chiiph@leap.se> | 2013-03-13 15:37:04 -0300 |
---|---|---|
committer | Tomás Touceda <chiiph@leap.se> | 2013-03-13 15:37:04 -0300 |
commit | 452d1b3a0ab64a6d1e742a74c369336dcdf91897 (patch) | |
tree | 9c50c01cf5ce8ccc823d29580250e2c697e3914a /src/leap/services | |
parent | 3ff6a5ebadca8cf6066e9db39fcbfcb3d8283430 (diff) |
Make the no up/down log an error instead of a warning
Diffstat (limited to 'src/leap/services')
-rw-r--r-- | src/leap/services/eip/vpnlaunchers.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/leap/services/eip/vpnlaunchers.py b/src/leap/services/eip/vpnlaunchers.py index 9345c0b3..c646da7d 100644 --- a/src/leap/services/eip/vpnlaunchers.py +++ b/src/leap/services/eip/vpnlaunchers.py @@ -142,8 +142,8 @@ def _has_updown_scripts(path): # XXX should check permissions too is_file = os.path.isfile(path) if not is_file: - logger.warning("Could not find up/down scripts. " + - "Might produce DNS leaks.") + logger.error("Could not find up/down scripts. " + + "Might produce DNS leaks.") return is_file |