-
Notifications
You must be signed in to change notification settings - Fork 125
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Verbose logging to stdout when application starts #110
Comments
👍 for this. Compile time purging doesn't seem to help either. I tried adding this to my config.exs:
|
Sorry about the late reply. Can you give this a try?
|
Feel free to reopen if the above doesn't solve the issue. I have added the information to README too. Thanks for reporting 👍 |
It definitely does not, we did a short dig and looks that those messages are logged before Elixir Logger is initialized (initialized 2nd time with configuration to be precise). After Logger is initialized configuration works, but it takes time and a lot of noise is generated during that that one - you get large blob of text every time you run tests. |
Pushed a test branch: https://github.com/pma/amqp/tree/test/verbose-logging When you check out this commit and run However I don't see the logging with this commit. Is it an application specific issue? Do you mind writing up the steps to reproduce the issue with |
@ono so the main difference is that we use |
I tried with I think that these logging were introduced by OTP 21. |
@ono here is the true way to filter out those messages:
The logs are coming from here: https://github.com/rabbitmq/rabbitmq-common/blob/da07128609739e1d840c00632bf0a72f11e81d04/src/supervisor2.erl#L1505-L1508. |
@AndrewDryga hey, sorry I've just noticed your comment. It's great. I am sharing the information on README. |
Hi, we are seeing very verbose logging when
:amqp
application starts:Version we are using:
1.0.0-pre.2
(last one before lager was introduced).Elixir version:
SASL is disabled.
The text was updated successfully, but these errors were encountered: