When we call out logger.debug in the code where does it output to? The example in line 53 of the original sandbox code doesn’t specify. Thanks
Sorry that I totally missed this post. The package loguru
will log to STDERR by default, which Docker will show in the console: Overview — loguru documentation
It’s very easy to configure additional logging sources with loguru if you want to log to file for example
Thanks, we eventually figured it out.