MayaFlux 0.1.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 388 of file Archivist.cpp.

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

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

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

+ Here is the caller graph for this function: