We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It would be cool if we could define, in which log level traces will be printed. For example:
SetLogTraceLevel(logger, ERROR, true); Log(logger, ERROR, "test"); //would print trace Log(logger, INFO, "test"); //shouldn't print trace
The text was updated successfully, but these errors were encountered:
Having a per-logger per-loglevel setting would just clutter the config file, but I could add a global per-loglevel setting for this:
LogLevel: # per loglevel settings Error: PrintCallTrace: false
Sorry, something went wrong.
No branches or pull requests
It would be cool if we could define, in which log level traces will be printed.
For example:
The text was updated successfully, but these errors were encountered: