Changed default log location to not be unix-specific
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -9,3 +9,4 @@
|
||||
/flamenco-worker.db
|
||||
/build/
|
||||
/dist/
|
||||
/flamenco-worker*.log
|
||||
|
||||
@@ -38,7 +38,7 @@ class = logging.handlers.TimedRotatingFileHandler
|
||||
formatter = flamenco
|
||||
# (filename, when, interval, backupCount, encoding, delay, utc, atTime=None)
|
||||
# Be aware that tilde expansion is *not* performed on the path.
|
||||
args = ('/tmp/flamenco-worker.log', 'midnight', 1, 7, 'utf8', True, True)
|
||||
args = ('flamenco-worker.log', 'midnight', 1, 7, 'utf8', True, True)
|
||||
|
||||
[formatters]
|
||||
keys = flamenco
|
||||
|
||||
Reference in New Issue
Block a user