diff options
Diffstat (limited to 'wallace/module_footer.py')
-rw-r--r-- | wallace/module_footer.py | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/wallace/module_footer.py b/wallace/module_footer.py index ab37d42..7544652 100644 --- a/wallace/module_footer.py +++ b/wallace/module_footer.py @@ -29,7 +29,9 @@ import pykolab from pykolab.translate import _ -log = pykolab.getLogger('pykolab.wallace') +log = pykolab.getLogger('pykolab.wallace/footer') +extra_log_params = {'qid': '-'} +log = pykolab.logger.LoggerAdapter(log, extra_log_params) conf = pykolab.getConf() mybasepath = '/var/spool/pykolab/wallace/footer/' @@ -49,6 +51,13 @@ def set_part_content(part, content): return True def execute(*args, **kw): + global extra_log_params + + # TODO: Test for correct call. + filepath = args[0] + + extra_log_params['qid'] = os.path.basename(filepath) + if not os.path.isdir(mybasepath): os.makedirs(mybasepath) @@ -56,9 +65,6 @@ def execute(*args, **kw): if not os.path.isdir(os.path.join(mybasepath, stage)): os.makedirs(os.path.join(mybasepath, stage)) - # TODO: Test for correct call. - filepath = args[0] - if 'stage' in kw: log.debug(_("Issuing callback after processing to stage %s") % (kw['stage']), level=8) log.debug(_("Testing cb_action_%s()") % (kw['stage']), level=8) |