Distillery log output to STDOUT

Hello,

I’m currently playing around with elixir releases wrapped into a docker container.

The easiest way to handle logs is just ouput everything to STDOUT (or STDERR). I have not found an easy way to configure that into my relesases.

Does anyone know?

1 Like

You can run the release in the foreground: bin/my_app foreground

1 Like

Thanks, that worked like a charm.