summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTomás Touceda <chiiph@leap.se>2013-03-13 15:37:04 -0300
committerTomás Touceda <chiiph@leap.se>2013-03-13 15:37:04 -0300
commit452d1b3a0ab64a6d1e742a74c369336dcdf91897 (patch)
tree9c50c01cf5ce8ccc823d29580250e2c697e3914a /src
parent3ff6a5ebadca8cf6066e9db39fcbfcb3d8283430 (diff)
Make the no up/down log an error instead of a warning
Diffstat (limited to 'src')
-rw-r--r--src/leap/services/eip/vpnlaunchers.py4
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