i am looking into using a custom logger to make be...
# troubleshooting
s
i am looking into using a custom logger to make better logs in dagster. does anyone know if there's a way to extract children of a message. here is my current logging string:`"[%(levelname)s] %(message)s"` but
message
has a number of attributes, and i just want
message['event']
. is that possible?
v
regex I think is your option right now. I'm guessing you're talking about https://gitlab.com/meltano/meltano/-/merge_requests/2395 if you find Charles comment there it might be helpful as hes' doing dagster stuff
j
If you’re talking specifically about
meltano elt
logs executed from dagster showing up nicely in the Dagster UI, we’re still ignoring the issue. I believe #3070 would make it a lot easier but you could also generate your own
logging.yaml
and then glue them together in your solid. It’s been on my backlog for a while
v
Thanks @julian_knight I should have tagged you, glad you found this 😄