I have an Erlang project in OTP 22 which uses the built-in logger module for logging (which was added in OTP 21).
My project uses the dependency "amqp_client" (https://github.com/rabbitmq/rabbitmq-erlang-client).
This dependency uses lager library for logging, so lager is also one of the dependencies in my project.
From the moment I've added lager to my project, the logs that were done via logger are not working anymore (I guess that's because lager is overriding some logging-handler of the VM which logger also uses, or something like this?)
Anyone has an idea?