Folks, I’m trying to surface log messages from lib...
# ask-community
a
Folks, I’m trying to surface log messages from library code used in assets. I’d be fine with seeing them in the event log stream or even simply on stdout/stderr of the user code container, but I just can’t figure out how to do that. Right now I only see messages from ERROR level and above in the user code container logs, but nothing below. I know that plain Python logs are swallowed, but just couldn’t set dagster.yaml to capture my library logs.
Ah, adding the package name to the
managed_python_loggers
list in
dagster.yaml
puts logs on the Dagster UI. Now I only need to figure out how to get to the right level.