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

◆ scribe_rt()

void MayaFlux::Journal::Archivist::scribe_rt ( Severity  severity,
Component  component,
Context  context,
std::string_view  message,
std::source_location  location = std::source_location::current() 
)

Log a message from a real-time context with the specified severity, component, and context.

This method is optimized for real-time contexts and captures the source location automatically.

Parameters
severityThe severity level of the log message.
componentThe component generating the log message.
contextThe execution context of the log message.
messageThe log message content.
locationThe source location (file, line, function) of the log call.

Definition at line 382 of file Archivist.cpp.

384{
385 m_impl->scribe_rt(severity, component, context, message, location);
386}
std::unique_ptr< Impl > m_impl

References m_impl.

Referenced by MayaFlux::Journal::scribe_rt(), and MayaFlux::Journal::scribe_rt().

+ Here is the caller graph for this function: