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

◆ format_print() [1/3]

template<typename... Args>
void MayaFlux::Journal::format_print ( const char *  fmt_str,
Args &&...  args 
)
inline

Printf-style overload for runtime format strings.

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.
fmt_strThe runtime format string.
argsThe format arguments.

Definition at line 268 of file Archivist.hpp.

269{
270 std::cout << "[MayaFlux] " << format_runtime(fmt_str, std::forward<Args>(args)...) << '\n';
271}
std::string format_runtime(std::string_view fmt_str, Args &&... args)
Definition Format.hpp:36

References format_runtime().

+ Here is the call graph for this function: