mrdocs::report::log

Format a message to the console.

Synopsis

Declared in <mrdocs/Support/Report.hpp>

template<class... Args>
void
log(
    Level level,
    Located<std::string_view> fs,
    Args...&&... args);

Parameters

Name

Description

level

0 to 4 The severity of the report. 0 is debug and 4 is fatal.

fs

The format string.

args

Optional additional arguments used to format a message to print. A trailing newline will be added to the message automatically.

Created with MrDocs