-
Notifications
You must be signed in to change notification settings - Fork 24
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
~The RTI should accept an argument to set the log level~ #8
Comments
I don't think it's a good idea to support this as a CLI. Logging can have considerable impact on performance, and if it's a CLI, then at a minimum, every logging point incurs the penalty of a test. If it is implemented badly, it will also incur the penalty of constructing the logging message that it will then not print. |
That's a good point -- I hadn't thought of that. Rather than telling folks to go edit the source, however, how about we create a build option for this? |
You don't need to edit the source code. This is explained in the RTI's README file:
|
Oh, great! My suggestion was prompted by this comment, but this certainly addresses it. |
Currently, recompilation is required to change the log level. It would be much better if this could be done using a CLI argument.
The text was updated successfully, but these errors were encountered: