You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Following #2281 and discussions in tech design we are going to simplify the project template by removing the logs folder and errors.log. File-based logging will remain but just be level INFO and above and go to project root instead.
Across all starters the following changes are needed:
Change info_file_handler to point to info.log (currently it's configured as filename: logs/info.log)
Remove error_file_handler everywhere (including in docs)
Delete logs folder
Update .gitignore to make sure that *.log gets ignored
The text was updated successfully, but these errors were encountered:
Following #2281 and discussions in tech design we are going to simplify the project template by removing the logs folder and errors.log. File-based logging will remain but just be level
INFO
and above and go to project root instead.Across all starters the following changes are needed:
info_file_handler
to point toinfo.log
(currently it's configured asfilename: logs/info.log
)error_file_handler
everywhere (including in docs)logs
folder.gitignore
to make sure that *.log gets ignoredThe text was updated successfully, but these errors were encountered: