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

◆ format_print() [2/3]

template<typename... Args>
void MayaFlux::Journal::format_print ( 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 254 of file Archivist.hpp.

255{
256 std::cout << "[MayaFlux] " << format(fmt_str, std::forward<Args>(args)...) << '\n';
257}
std::string format(format_string< std::remove_cvref_t< Args >... > fmt_str, Args &&... args)
Definition Format.hpp:30

References format().

+ Here is the call graph for this function: