is there a good way to route stdout to context.log...
# announcements
c
is there a good way to route stdout to context.log? sometimes i wish i could log output to dagster's logger without having to go into the stdout tab, since i can't always access
context.log
in the libraries that i'm importing
p
Not really at the moment… Often times the libraries are using C libraries and it’s difficult to flow that through the Python loggers that Dagster has set up
c
ah, makes sense
in my case i'm importing a lot of python functions that print to stdout, i wonder if it would be possible for python functions at least
p
We’re currently routing stdout to a file so that we can read that out for individual solid’s compute steps
What may be more possible is to give access to the compute log manager from the solid’s step context, so that you could set up your own sidecar, but I’d have to think about that more