MayaFlux 0.5.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ scribe_rt() [1/2]

template<typename... Args>
void MayaFlux::Journal::scribe_rt ( Severity  severity,
Component  component,
Context  context,
std::source_location  location,
const char *  msg_or_fmt,
Args &&...  args 
)

printf-style overload of scribe_rt().

Parameters
msg_or_fmtThe format string.
argsThe format arguments.

Definition at line 197 of file Archivist.hpp.

200{
201 if constexpr (sizeof...(Args) == 0) {
202 Archivist::instance().scribe_rt(severity, component, context,
203 std::string_view(msg_or_fmt), location);
204 } else {
205 auto msg = format_runtime(msg_or_fmt, std::forward<Args>(args)...);
206 Archivist::instance().scribe_rt(severity, component, context, msg, location);
207 }
208}
std::string severity
Definition Config.cpp:18

References format_runtime(), MayaFlux::Journal::Archivist::instance(), MayaFlux::Journal::Archivist::scribe_rt(), and severity.

+ Here is the call graph for this function: