Logging in 3.2 does not work like in 3.1?

Hello,
I just updated from openHAB 3.1 to 3.2. Its running on a RasPi in a Docker container. In version 3.1 I could watch the log messages with

docker logs -n 10 -f openhab

I have seen every event, item change and, most importantly, error messages from scripts.

In 3.2 the output ends with

Launching the openHAB runtime...

The log files (openhab.log, events.log) contain current log messages but I want to be able to see them in the console… Any ideas on that?

This might help:

To use a console logger with openHAB 3.x, edit userdata/etc/log4j2.xml and add the following appender to the “Root logger” and “openhab.event” logger configurations: <AppenderRef ref="STDOUT"/>

See:

That worked! Thank you