Skip to content

Commit

Permalink
Fix default logging directory
Browse files Browse the repository at this point in the history
  • Loading branch information
erikjandevries committed Dec 1, 2020
1 parent f887307 commit ad7dcff
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/myautoml/utils/default_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ logging:
class: logging.handlers.RotatingFileHandler
level: DEBUG
formatter: simple
filename: ${DIR_LOGS}/debug.log
filename: logs/debug.log
maxBytes: 20485760 # 20MB
backupCount: 10
encoding: utf8
Expand All @@ -30,7 +30,7 @@ logging:
class: logging.handlers.RotatingFileHandler
level: INFO
formatter: simple
filename: ${DIR_LOGS}/info.log
filename: logs/info.log
maxBytes: 10485760 # 10MB
backupCount: 10
encoding: utf8
Expand All @@ -39,7 +39,7 @@ logging:
class: logging.handlers.RotatingFileHandler
level: WARNING
formatter: simple
filename: ${DIR_LOGS}/warning.log
filename: logs/warning.log
maxBytes: 10485760 # 10MB
backupCount: 10
encoding: utf8
Expand All @@ -48,7 +48,7 @@ logging:
class: logging.handlers.RotatingFileHandler
level: ERROR
formatter: simple
filename: ${DIR_LOGS}/error.log
filename: logs/error.log
maxBytes: 10485760 # 10MB
backupCount: 10
encoding: utf8
Expand All @@ -57,7 +57,7 @@ logging:
class: logging.handlers.RotatingFileHandler
level: CRITICAL
formatter: simple
filename: ${DIR_LOGS}/critical.log
filename: logs/critical.log
maxBytes: 10485760 # 10MB
backupCount: 10
encoding: utf8
Expand Down

0 comments on commit ad7dcff

Please sign in to comment.