aboutsummaryrefslogtreecommitdiffstats
path: root/lib/toaster/toastermain/logs.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/toaster/toastermain/logs.py')
-rw-r--r--lib/toaster/toastermain/logs.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/toaster/toastermain/logs.py b/lib/toaster/toastermain/logs.py
index 5a296bc3f..9d392fb4b 100644
--- a/lib/toaster/toastermain/logs.py
+++ b/lib/toaster/toastermain/logs.py
@@ -109,7 +109,7 @@ LOGGING_SETTINGS = {
'file_django': {
'level': 'INFO',
'class': 'logging.handlers.TimedRotatingFileHandler',
- 'filename': BUILDDIR / 'toaster_django.log',
+ 'filename': BUILDDIR / 'toaster_logs/toaster_django.log',
'when': 'D', # interval type
'interval': 1, # defaults to 1
'backupCount': 10, # how many files to keep
@@ -118,7 +118,7 @@ LOGGING_SETTINGS = {
'file_api': {
'level': 'INFO',
'class': 'logging.handlers.TimedRotatingFileHandler',
- 'filename': BUILDDIR / 'toaster_api.log',
+ 'filename': BUILDDIR / 'toaster_logs/toaster_api.log',
'when': 'D',
'interval': 1,
'backupCount': 10,
@@ -127,7 +127,7 @@ LOGGING_SETTINGS = {
'file_toaster': {
'level': 'INFO',
'class': 'logging.handlers.TimedRotatingFileHandler',
- 'filename': BUILDDIR / 'toaster.log',
+ 'filename': BUILDDIR / 'toaster_logs/toaster.log',
'when': 'D',
'interval': 1,
'backupCount': 10,