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
Poco::Logger should support formatting log messages using C++20 std::format alternatively to Poco::format(). Provide alternative methods:
Poco::Logger
std::format
Poco::format()
fmtTrace(fmt, ...)
fmtDebug(fmt, ...)
fmtInformation(fmt, ...)
fmtNotice(fmt, ...)
fmtWarning(fmt, ...)
fmtError(fmt, ...)
fmtCritical(fmt, ...)
fmtFatal(fmt, ...)
These take an std::format() format string and a variable number of parameters and internally call std::format() after the log level check.
std::format()
The text was updated successfully, but these errors were encountered:
obiltschnig
No branches or pull requests
Poco::Logger
should support formatting log messages using C++20std::format
alternatively toPoco::format()
.Provide alternative methods:
fmtTrace(fmt, ...)
fmtDebug(fmt, ...)
fmtInformation(fmt, ...)
fmtNotice(fmt, ...)
fmtWarning(fmt, ...)
fmtError(fmt, ...)
fmtCritical(fmt, ...)
fmtFatal(fmt, ...)
These take an
std::format()
format string and a variable number of parameters and internally callstd::format()
after the log level check.The text was updated successfully, but these errors were encountered: