Skip to content
Snippets Groups Projects
Commit 78872b3a authored by Matt Traudt's avatar Matt Traudt
Browse files

Merge branch 'issue159' from juga, thanks!

parents 8f5f590a 8674d780
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,7 @@
datadir = ${sbws_home}/datadir
v3bw_fname = ${sbws_home}/v3bw.txt
started_filepath = ${sbws_home}/started_at
log_filepath = ${sbws_home}/sbws.log
[destinations]
# How often to check if a destional is usable
......
......@@ -2,10 +2,10 @@
keys = root,sbws
[handlers]
keys = sbwsdefault,sbwsdebug
keys = sbwsdefault,sbwsdebug,sbwsfile
[formatters]
keys = sbwsdefault,sbwsdebug
keys = sbwsdefault,sbwsdebug,sbwssys
[logger_root]
level = WARNING
......@@ -15,13 +15,13 @@ qualname=root
[logger_sbws]
level = INFO
handlers = sbwsdefault
# add here sbwssys for also logging to system log
handlers = sbwsdefault,sbwsfile
propagate = 0
qualname=sbws
[handler_sbwsdefault]
class = StreamHandler
# add here sbwsys for also logging to system log
formatter = sbwsdefault
args = (sys.stdout,)
......@@ -48,5 +48,16 @@ level = INFO
# syslog-like formater
[formatter_sbwssys]
format = %(module)s[%(process)s]: %(message)s
datefmt = %Y-%m-%d %H:%M:%S
# hostname should be added here with a context filter, dunno if there is a way
# to add it here
format = %(asctime)s %(module)s[%(process)s]: <%(levelname)s> %(message)s
datefmt = %b %d %H:%M:%S
[handler_sbwsfile]
class = handlers.RotatingFileHandler
formatter = sbwssys
# There doesn't seem to be a way to put ${paths:log_filepath} here since the
# logging library eval()s this, which doesn't give the ini parsing library a
# chance to replace the text. So we do it in configure_logging() in
# sbws/util/config.py instead.
args = ('/nonexist',)
......@@ -87,6 +87,10 @@ def get_user_example_config():
def configure_logging(conf):
assert isinstance(conf, ConfigParser)
# log_filepath is not a variable in config.log.default.ini,
# so adding it here. Maybe there is a better way to do this
conf['handler_sbwsfile']['args'] = \
"('{}',)".format(conf['paths']['log_filepath'])
with NamedTemporaryFile('w+t') as fd:
conf.write(fd)
fd.seek(0, 0)
......@@ -146,7 +150,7 @@ def _validate_paths(conf):
err_tmpl = Template('$sec/$key ($val): $e')
unvalidated_keys = [
'datadir', 'sbws_home', 'v3bw_fname',
'started_filepath']
'started_filepath', 'log_filepath']
all_valid_keys = unvalidated_keys
allow_missing = ['sbws_home']
errors.extend(_validate_section_keys(conf, sec, all_valid_keys, err_tmpl,
......
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