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
Given the high number of threads running on our elastic beanstalk cluster, we should have replace all print statements with current_app logging statements. This can apparently easily be done across the blueprints/application by
from flask import current_app
and then typical logger statements like
current_app.logger.info, current_app.logger.error, etc.
The text was updated successfully, but these errors were encountered:
Given the high number of threads running on our elastic beanstalk cluster, we should have replace all
print
statements withcurrent_app
logging statements. This can apparently easily be done across the blueprints/application byfrom flask import current_app
and then typical logger statements like
current_app.logger.info
,current_app.logger.error
, etc.The text was updated successfully, but these errors were encountered: