-
Notifications
You must be signed in to change notification settings - Fork 430
Allow custom log_levels #156
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
Conversation
Tested with:
|
So far we've avoided exposing the user to any raw Erlang configuration in any of our environment variables, and especially considering that the 3.7 version of RabbitMQ is moving to a configuration file that's INI-based, I'd like to continue sticking to that. |
@tianon the Erlang term config format isn't going away, in fact, some things have such as complex structure that I don't think they can be moved to the .ini-style format. In 3.7.0 it will be a separate config file, though, and most things will use the .ini one. JFYI. |
Config settings can be passed on the command line, e.g.
which is an Erlang/OTP feature: |
@tianon in this particular case, the value of More complicated cases (e.g. LDAP queries) should be configured by providing a file IMO. |
Ooooh, we should definitely document ala, Good to know regarding the ini-style config -- will keep that in mind. 😅 |
@tianon no, it would be |
I guess that makes this PR related to this one as well: #138 😋 |
See Pull request #187 Sorry, I did not intent to reopen this. Only to add a reference so other googlers could find a solution. |
Closes #118