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
We should have log renderers that display our logs and the event dict params we add to them. We should at least have a JSON renderer and a console renderer.
The json renderer should just add custom values in the event dict to the json output as key-value pairs
The console renderer should parse the dict and add the custom values as tags, e.g.
2023-09-26 18:19:58 [info ] 30_ingest_to_table.py Doing something awesome over here, boss
as opposed to what structlog does out of the box
2023-09-26 18:19:58 [info ] Doing something awesome over here, boss step=30_ingest_to_table.py
Acceptance Criteria
Create a console renderer
Create a json renderer
The text was updated successfully, but these errors were encountered:
Prerequisites
#2722
Overview
We should have log renderers that display our logs and the event dict params we add to them. We should at least have a JSON renderer and a console renderer.
The json renderer should just add custom values in the event dict to the json output as key-value pairs
The console renderer should parse the dict and add the custom values as tags, e.g.
as opposed to what structlog does out of the box
Acceptance Criteria
The text was updated successfully, but these errors were encountered: