summaryrefslogtreecommitdiff
path: root/src/leap/bitmask/vpn/service.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/leap/bitmask/vpn/service.py')
-rw-r--r--src/leap/bitmask/vpn/service.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/leap/bitmask/vpn/service.py b/src/leap/bitmask/vpn/service.py
index afa75e5e..78443323 100644
--- a/src/leap/bitmask/vpn/service.py
+++ b/src/leap/bitmask/vpn/service.py
@@ -116,6 +116,7 @@ class VPNService(HookableService):
@defer.inlineCallbacks
def start_vpn(self, domain=None):
+ self.log.debug('Starting VPN')
self._cfg.set('autostart', True)
autostart.autostart_app('on')
@@ -234,6 +235,7 @@ class VPNService(HookableService):
if expiry:
expiry_ts = expiry.strftime('%Y-%m-%dT%H:%M:%SZ')
ret['cert_expires'] = expiry_ts
+ self.log.debug('VPN check: %s' % str(ret))
return ret
@defer.inlineCallbacks