summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/toaster/toastermain/logs.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/toaster/toastermain/logs.py b/bitbake/lib/toaster/toastermain/logs.py
index 573fbef9e5e..f8042db1657 100644
--- a/bitbake/lib/toaster/toastermain/logs.py
+++ b/bitbake/lib/toaster/toastermain/logs.py
@@ -110,7 +110,7 @@ LOGGING_SETTINGS = {
'file_django': {
'level': 'INFO',
'class': 'logging.handlers.TimedRotatingFileHandler',
- 'filename': BUILDDIR / 'logs/django.log',
+ 'filename': BUILDDIR / 'toaster_django.log',
'when': 'D', # interval type
'interval': 1, # defaults to 1
'backupCount': 10, # how many files to keep
@@ -119,7 +119,7 @@ LOGGING_SETTINGS = {
'file_api': {
'level': 'INFO',
'class': 'logging.handlers.TimedRotatingFileHandler',
- 'filename': BUILDDIR / 'logs/api.log',
+ 'filename': BUILDDIR / 'toaster_api.log',
'when': 'D',
'interval': 1,
'backupCount': 10,
@@ -128,7 +128,7 @@ LOGGING_SETTINGS = {
'file_toaster': {
'level': 'INFO',
'class': 'logging.handlers.TimedRotatingFileHandler',
- 'filename': BUILDDIR / 'logs/toaster.log',
+ 'filename': BUILDDIR / 'toaster.log',
'when': 'D',
'interval': 1,
'backupCount': 10,