summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIsis Lovecruft <isis@torproject.org>2013-02-16 23:27:18 +0000
committerIsis Lovecruft <isis@torproject.org>2013-02-16 23:27:18 +0000
commit3cd39505708819a2d70dd5b91f8d1de81e89181e (patch)
treeeb59018f98d45c5e514cfaabab437cfbc18d913f
parent031a0024c4350e5fb79ffd5ed3533c6a23600749 (diff)
Fix log.start() function in leap/mx/util/log.py to properly use the xdg
directory if that was discovered in config setup. * Updated imports to reflect directory layout changes, again.
-rw-r--r--src/leap/mx/util/log.py39
1 files changed, 14 insertions, 25 deletions
diff --git a/src/leap/mx/util/log.py b/src/leap/mx/util/log.py
index ef54605..02ceddf 100644
--- a/src/leap/mx/util/log.py
+++ b/src/leap/mx/util/log.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
# -*- encoding: utf-8 -*-
'''
log.py
@@ -21,10 +20,10 @@ import traceback
from twisted.python import log as txlog
from twisted.python import util as txutil
-from twisted.python.logfile import DailyLogFile
+from twisted.python import logfile as txlogfile
from twisted.python.failure import Failure
-from leap.util import version, config
+from leap.mx.util import version, config
class InvalidTimestampFormat(Exception):
@@ -65,34 +64,24 @@ def timeToPrettyDate(time_val):
"""Convert seconds since epoch to date."""
return time.ctime(time_val)
-def start(logfile=None, application_name=None):
+def start(logfilename=None, logfiledir=None):
"""
Start logging to stdout, and optionally to a logfile as well.
- @param logfile: The filename to store logs in, which is placed in
- /leap_mx/logs/.
- @param application_name: The name of the running application.
+ @param logfile: The full path of the filename to store logs in.
"""
- if not application_name:
- application_name = version.name
- print "application name: %s" % application_name
-
- daily_logfile = None
-
- if not logfile:
- logfile = config.basic.logfile
-
- repo_dir = version.getRepoDir()
- logfile_dir = os.path.join(repo_dir, 'log')
- logfile_name = logfile
+ txlog.startLoggingWithObserver(UnprefixedLogfile(sys.stdout).emit)
- daily_logfile = DailyLogFile(logfile_name, logfile_dir)
+ if logfilename and logfiledir:
+ if not os.path.isdir(logfiledir):
+ os.makedirs(logfiledir)
+ daily_logfile = txlogfile.DailyLogFile(logfilename, logfiledir)
+ txlog.addObserver(txlog.FileLogObserver(daily_logfile).emit)
- txlog.startLoggingWithObserver(UnprefixedLogfile(sys.stdout).emit)
- txlog.addObserver(txlog.FileLogObserver(daily_logfile).emit)
- txlog.msg("Starting %s on %s (%s UTC)" % (application_name,
- prettyDateNow(),
- utcPrettyDateNow()))
+ txlog.msg("Starting %s, version %s, on %s UTC" % (version.getPackageName(),
+ version.getVersion(),
+ utcPrettyDateNow()))
+ txlog.msg("Authors: %s" % version.getAuthors())
def msg(msg, *arg, **kwarg):
"""Log a message at the INFO level."""