mirror of
https://github.com/gabime/spdlog.git
synced 2024-11-15 16:35:45 +08:00
Add assignment operator to ansi color sink. Adjust default colors.
This commit is contained in:
parent
9afc960d88
commit
ee610efd7d
@ -24,6 +24,9 @@ public:
|
||||
ansicolor_sink(sink_ptr sink);
|
||||
virtual ~ansicolor_sink();
|
||||
|
||||
ansicolor_sink(const ansicolor_sink& other);
|
||||
ansicolor_sink& operator=(const ansicolor_sink& other);
|
||||
|
||||
virtual void log(const details::log_msg& msg) override;
|
||||
virtual void flush() override;
|
||||
|
||||
@ -72,10 +75,10 @@ protected:
|
||||
|
||||
inline ansicolor_sink::ansicolor_sink(sink_ptr sink) : sink_(sink)
|
||||
{
|
||||
colors_[level::trace] = grey;
|
||||
colors_[level::debug] = grey;
|
||||
colors_[level::trace] = white;
|
||||
colors_[level::debug] = white;
|
||||
colors_[level::info] = white;
|
||||
colors_[level::notice] = yellow;
|
||||
colors_[level::notice] = bold + white;
|
||||
colors_[level::warn] = bold + yellow;
|
||||
colors_[level::err] = red;
|
||||
colors_[level::critical] = bold + red;
|
||||
@ -89,6 +92,22 @@ inline ansicolor_sink::~ansicolor_sink()
|
||||
flush();
|
||||
}
|
||||
|
||||
inline ansicolor_sink::ansicolor_sink(const ansicolor_sink& other) : sink_(other.sink_), colors_(other.colors_)
|
||||
{
|
||||
// do nothing
|
||||
}
|
||||
|
||||
|
||||
inline ansicolor_sink& ansicolor_sink::operator=(const ansicolor_sink& other)
|
||||
{
|
||||
if (this == &other)
|
||||
return *this;
|
||||
|
||||
sink_ = other.sink_;
|
||||
colors_ = other.colors_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
inline void ansicolor_sink::log(const details::log_msg& msg)
|
||||
{
|
||||
// Wrap the originally formatted message in color codes
|
||||
|
Loading…
Reference in New Issue
Block a user