9#include <cosmos/io/colors.hxx>
38 std::ostream&
error() {
return getStream(m_err); }
40 std::ostream&
warn() {
return getStream(m_warn); }
42 std::ostream&
info() {
return getStream(m_info); }
44 std::ostream&
debug() {
return getStream(m_debug); }
47 void setChannels(
const bool error,
const bool warning,
const bool info,
const bool debug) {
48 m_err.enabled = error;
49 m_warn.enabled = warning;
50 m_info.enabled = info;
51 m_debug.enabled = debug;
54 void setPrefix(
const std::string_view prefix) {
55 m_common_prefix = prefix;
63 prefix{p}, color{c} {}
65 std::ostream *stream =
nullptr;
68 const std::string_view prefix;
77 auto &out = state.enabled ? *state.stream : getNoopStream();
82 out << m_common_prefix;
87 out << term::TermControl::DEFAULT_FG_COLOR;
92 std::ostream& getNoopStream() {
99 m_null.seekp(m_null.beg);
104 static bool isTTY(
const std::ostream &o);
113 void setStream(std::ostream &s, StreamState &state);
Abstract interface for a basic logging facility.
std::ostream & debug()
Log a debug message.
std::ostream & info()
Log an info message.
void setChannels(const bool error, const bool warning, const bool info, const bool debug)
Enable/disable different log channels.
std::ostream & warn()
Log a warning message.
std::ostream & error()
Log an error message.
std::stringstream m_null
A noop stream object to write to if a channel is disabled.
std::string m_common_prefix
a common prefix to prepend to each message
Complete color specification for ANSI terminals.
Internal state for each channel's stream.