[#util-log-LogPrintFormatInternal_] = xref:util.adoc[util]::xref:util/log.adoc[log]::LogPrintFormatInternal_ :relfileprefix: ../../ :mrdocs: Format a log message and forward it to util::log::Log. == Synopsis Declared in `<util/log.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename... Args> void LogPrintFormatInternal_( xref:SourceLocation.adoc[SourceLocation]&& source_loc, xref:BCLog/LogFlags.adoc[BCLog::LogFlags] flag, xref:util/log/Level.adoc[util::log::Level] level, bool should_ratelimit, xref:util/ConstevalFormatString.adoc[util::ConstevalFormatString<sizeof...(Args)>] fmt, Args const&... args); ---- == Parameters [cols="1,4"] |=== | Name| Description | *source_loc* | Source location the message originates from. | *flag* | Logging category flag for the message. | *level* | Severity level of the message. | *should_ratelimit* | Whether the entry may be rate limited. | *fmt* | tinyformat format string. | *args* | Format arguments substituted into fmt. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#