Changed default log location to not be unix-specific

This commit is contained in:
2017-09-06 12:45:03 +02:00
parent ddd6607837
commit 28faec5941
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@@ -9,3 +9,4 @@
/flamenco-worker.db
/build/
/dist/
/flamenco-worker*.log

View File

@@ -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