diff options
author | kali <kali@leap.se> | 2012-10-08 07:50:24 +0900 |
---|---|---|
committer | kali <kali@leap.se> | 2012-10-08 07:50:24 +0900 |
commit | 6728eb9afb21bad867e4052a6190a9bdb34c928a (patch) | |
tree | f648189df27c8531991001a1ce25845ffe3b9e41 /src/leap/util | |
parent | 6cd947041b3352bebddf3863a86b0a15f8222bcf (diff) |
popup dialog error when network error happens
we are shutting down for now.
we should be acting upon failures in the near future.
lowered the recurrent checks interval to 10 seconds.
Diffstat (limited to 'src/leap/util')
-rw-r--r-- | src/leap/util/coroutines.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/leap/util/coroutines.py b/src/leap/util/coroutines.py index b9d0a98b..0657fc04 100644 --- a/src/leap/util/coroutines.py +++ b/src/leap/util/coroutines.py @@ -4,10 +4,13 @@ from __future__ import division, print_function +import logging from subprocess import PIPE, Popen import sys from threading import Thread +logger = logging.getLogger(__name__) + ON_POSIX = 'posix' in sys.builtin_module_names @@ -38,8 +41,7 @@ for each event if callable(callback): callback(m) else: - #XXX log instead - print('not a callable passed') + logger.debug('not a callable passed') except GeneratorExit: return |