Skip to content

Commit

Permalink
config_logger needs kwarg for log location
Browse files Browse the repository at this point in the history
  • Loading branch information
Someguy123 committed Mar 27, 2019
1 parent 599f340 commit e6d53b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion steemengine/settings/log.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def config_logger(*logger_names, log_dir=BASE_LOG_FOLDER):
LOGGER_IS_SETUP = False

if not LOGGER_IS_SETUP:
log = config_logger(*LOGGER_NAMES, BASE_WEB_LOGS)
log = config_logger(*LOGGER_NAMES, log_dir=BASE_WEB_LOGS)
LOGGER_IS_SETUP = True
else:
log = logging.getLogger(BASE_LOGGER)

0 comments on commit e6d53b3

Please sign in to comment.