Write formatted log message.
spec character.
out() -> std::ostream &Access log message stream.
~log_message()Append newline character and flush the stream.
template <class ... Args> log_message(const char * name, char spec = '_')explicit
Create log message.
Create log message with name name, argument marker spec, that will be sent to standard error stream when destructor is called.
template <class ... Args> log_message(const char * name, char spec, const char * fmt, const Args &... tokens)explicit
Create log message.
Create log message with name name, argument marker spec, formatted text fmt, and arguments tokens, that will be sent to standard error stream when destructor is called.
template <class ... Args> log_message(const char * name, const char * fmt, const Args &... tokens)explicit
Create log message.
Create log message with name name, argument marker '_', formatted text fmt, and arguments tokens, that will be sent to standard error stream when destructor is called.