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

◆ scribe_simple()

void MayaFlux::Journal::Archivist::scribe_simple ( Component  component,
Context  context,
std::string_view  message 
)

Log a simple message without source location information.

This method is intended for use in contexts where source location is not available or needed. It is not effected by severity filters, so use sparingly.

Parameters
componentThe component generating the log message.
contextThe execution context of the log message.
messageThe log message content.

Definition at line 391 of file Archivist.cpp.

393{
394 JournalEntry entry(Severity::NONE, component, context, message, std::source_location {});
395 m_impl->scribe(entry);
396}
std::unique_ptr< Impl > m_impl

References m_impl, and MayaFlux::Journal::NONE.

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

+ Here is the caller graph for this function: