Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
sbws
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
juga
sbws
Commits
78872b3a
Commit
78872b3a
authored
6 years ago
by
Matt Traudt
Browse files
Options
Downloads
Plain Diff
Merge branch 'issue159' from juga, thanks!
parents
8f5f590a
8674d780
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
sbws/config.default.ini
+1
-0
1 addition, 0 deletions
sbws/config.default.ini
sbws/config.log.default.ini
+17
-6
17 additions, 6 deletions
sbws/config.log.default.ini
sbws/util/config.py
+5
-1
5 additions, 1 deletion
sbws/util/config.py
with
23 additions
and
7 deletions
sbws/config.default.ini
+
1
−
0
View file @
78872b3a
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
sbws/config.log.default.ini
+
17
−
6
View file @
78872b3a
...
...
@@ -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',)
This diff is collapsed.
Click to expand it.
sbws/util/config.py
+
5
−
1
View file @
78872b3a
...
...
@@ -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
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment