Kyle Bowman
Results
1
issues of
Kyle Bowman
Within the `logger_setup.py` file there is a mistake in this code here. `if app.config.get('LOG_FILE'): file_handler = RotatingFileHandler(app.config['LOG_FILENAME'], app.config['LOG_MAXBYTES'], app.config['LOG_BACKUPS'], 'a', encoding='utf-8') file_handler.setLevel(logging.DEBUG) app.logger.addHandler(file_handler)` The first possible mistake or maybe just...