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

◆ format_print() [2/3]

template<typename... Args>
void MayaFlux::Journal::format_print ( std::format_string< std::remove_cvref_t< Args >... >  fmt_str,
Args &&...  args 
)
inline

Printf-style overload of format_print().

Print formatted output directly to stdout with MayaFlux prefix.

Intended for immediate, unfiltered output without journal infrastructure. No component/context tagging, no severity filtering, no source location. Output includes [MayaFlux] prefix to identify framework origin.

Parameters
messageThe message or format string.
msg_or_fmtThe format string.
argsThe format arguments.

Definition at line 270 of file Archivist.hpp.

271{
272 std::cout << "[MayaFlux] " << format(fmt_str, std::forward<Args>(args)...) << '\n';
273}