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
gLog.printf(flags, "format", ...) always evaluates its arguments, even if the print is skipped.
gLog.printf(flags, "format", ...)
Add gLog.cond(flags, [&]{){ .... }), which calls the ... code only if enabled by the flag values and the log settings.
gLog.cond(flags, [&]{){ .... })
The text was updated successfully, but these errors were encountered:
d372e8f
terrillmoore
No branches or pull requests
gLog.printf(flags, "format", ...)
always evaluates its arguments, even if the print is skipped.Add
gLog.cond(flags, [&]{){ .... })
, which calls the ... code only if enabled by the flag values and the log settings.The text was updated successfully, but these errors were encountered: