18 string_view svFunction,
21 for (
const auto& stream : m_Streams)
22 stream->log(eVerbosity,
category, svFile, svFunction, nLine, svFormat);
25 template<
class... args_t>
26 requires(log_acceptable_args<args_t...>)
32 string_view svFunction,
34 const args_t&... args)
37 for (
const auto& stream : m_Streams)
38 stream->log(eVerbosity,
category, svFile, svFunction, nLine, sLogMessage);
43 for (
const auto& stream : m_Streams)
49 m_Streams.push_back(std::move(pStream));
61 string_view svFunction)
const noexcept
63 for (
const auto& stream : m_Streams)
64 if (stream->get_unit_info(
category, eVerbosity, svFile, svFunction))
requires static format_acceptable_args< char_type, args_t... > basic_string static_format(format_string_type< args_t... > sFormat, const args_t &... args)
Create a string by formatting it with the format string and the args.
A category is a class that identifies a particular piece of code. This code can be located in differe...
void log(verbosity eVerbosity, string_view svFormat, const category &category, string_view svFile, string_view svFunction, int nLine)
Log to all streams.
bool will_any_stream_accept(const category &category, verbosity eVerbosity, string_view svFile, string_view svFunction) const noexcept
Returns true if any of streams will accept this message.
void add_stream(std::unique_ptr< base_logger_stream > pStream) noexcept
Add output stream to the logger.
void reset() noexcept
Reset logger and clear all streams.
void flush()
Flush all streams.