Manage ASL magazines and their articles.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
asl-articles/asl_articles/startup.py

27 lines
719 B

""" Manage the startup process. """
from flask import jsonify
from asl_articles import app
_startup_msgs = {
"info": [],
"warning": [],
"error": []
}
# ---------------------------------------------------------------------
@app.route( "/startup-messages" )
def get_startup_msgs():
"""Return any messages logged during startup."""
return jsonify( _startup_msgs )
def log_startup_msg( msg_type, msg, *args, **kwargs ):
"""Log a startup message."""
logger = kwargs.pop( "logger", None )
msg = msg.format( *args, **kwargs )
if logger:
assert msg_type in ("info","warning","error")
getattr( logger, msg_type )( "%s", msg )
_startup_msgs[ msg_type ].append( msg )