Skip to content
Snippets Groups Projects
Commit 46bd60bb authored by Hendrik Buschmeier's avatar Hendrik Buschmeier
Browse files

Fixed a small bug, with log cmds.

parent 83dd658f
No related branches found
No related tags found
No related merge requests found
...@@ -328,13 +328,13 @@ class LoggerComponent(object): ...@@ -328,13 +328,13 @@ class LoggerComponent(object):
except: except:
print('Failed to write to logfile!') print('Failed to write to logfile!')
elif iu.category == 'logcontrol': elif iu.category == 'logcontrol':
cmd = iu.payload['cmd'] cmd = iu.payload['cmd'] if 'cmd' in iu.payload else 'undef'
if cmd == 'open_log_file': if cmd == 'open_log_file':
filename = iu.payload['filename'] if 'filename' in iu.payload else '' filename = iu.payload['filename'] if 'filename' in iu.payload else ''
if 'existing' in iu.payload: if 'existing' in iu.payload:
log_mode_ = iu.payload['existing'].lower() log_mode_ = iu.payload['existing'].lower()
if log_mode_ not in LOG_MODES: if log_mode_ not in LOG_MODES:
LOG_WARN(u'Value of "existing" should be "append", timestamp, or "overwrite", continuing with mode {mode}'.format(mode=self.log_mode)) LOG_WARN(u'Value of "existing" should be "append", "timestamp", or "overwrite", continuing with mode {mode}'.format(mode=self.log_mode))
else: else:
self.log_mode = log_mode_ self.log_mode = log_mode_
self.open_logfile(filename) self.open_logfile(filename)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment