While creating apps, I am often faced with the desire to route some kind of logs and/or notifications to the UI. It could be e.g info messages, warnings or errors that I would like to route to a particular UI element. It can be a bit tedious to do in Dash, so I decided to add a create a LogTransform
to easy the pain. Now, if you pass log=True
to a callback, a DashLogger
object will be injected into the callback,
@app.callback(Output("txt", "children"), Input("btn", "n_clicks"), log=True)
def do_stuff(n_clicks, logger: DashLogger): # logger injected as an extra callback argument
logger.info("Here goes some info")
logger.warning("This is a warning")
logger.error("Some error occurred")
...
The DashLogger
has a syntax similar to the standard logging
module, but directs logs to a UI element of your choice (configurable via the LogConfig
parameter of the LogTransform
). Per default, the dash-mantine-components notification system is used if the library is available. Here is a complete example,
import dash_mantine_components as dmc
from dash_extensions.enrich import Output, Input, html, DashProxy, LogTransform, DashLogger
app = DashProxy(transforms=[LogTransform()], prevent_initial_callbacks=True)
app.layout = html.Div([dmc.Button("Run", id="btn"), dmc.Text(id="txt")])
@app.callback(Output("txt", "children"), Input("btn", "n_clicks"), log=True)
def do_stuff(n_clicks, logger: DashLogger):
logger.info("Here goes some info")
logger.info("Here goes some more info")
logger.warning("This is a warning")
logger.info("Even more info")
logger.error("Some error occurred")
return f"Run number {n_clicks} completed"
if __name__ == '__main__':
app.run_server()
Running the example, this is what you get, when the button is clicked,
I haven’t done extensive testing, but I have used the system in a few apps, and it seems to work as intended
NB: The LogTransform
is available in dash-extensions==0.0.71
, and the notifications system integration has been tested with dash-mantine-components==0.4.1
.