diff options
author | kali <kali@leap.se> | 2012-09-05 10:23:24 +0900 |
---|---|---|
committer | kali <kali@leap.se> | 2012-09-05 10:23:24 +0900 |
commit | c190b7f66cc1977d0e058bfa2d8fc1a850326320 (patch) | |
tree | 2f19a173c5e312c09d4bbe379749d534b7f23199 /src/leap/app.py | |
parent | 535e584ba978a7a234a52df14f89197fbc3cea14 (diff) |
missing_pkexec error converted to "auto" error.
idea is that we define user messages in the exceptions,
and queue them during (conductor) checks.
user facing dialogs get constucted from exception attrs.
if critical, log as such and exit.
Diffstat (limited to 'src/leap/app.py')
-rw-r--r-- | src/leap/app.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/leap/app.py b/src/leap/app.py index 1ab806ca..5849848c 100644 --- a/src/leap/app.py +++ b/src/leap/app.py @@ -35,7 +35,7 @@ def main(): logfile = getattr(opts, 'log_file', False) if logfile: - logger.debug('setting logfile ', logfile) + logger.debug('setting logfile to %s ', logfile) fileh = logging.FileHandler(logfile) fileh.setLevel(logging.DEBUG) fileh.setFormatter(formatter) |