ClickHouse/base/loggers/OwnFormattingChannel.cpp

33 lines
656 B
C++
Raw Normal View History

#include "OwnFormattingChannel.h"
#include "OwnPatternFormatter.h"
namespace DB
{
2020-05-31 13:48:43 +00:00
void OwnFormattingChannel::logExtended(const ExtendedLogMessage & msg)
{
if (pChannel && priority >= msg.base.getPriority())
{
if (pFormatter)
{
std::string text;
pFormatter->formatExtended(msg, text);
pChannel->log(Poco::Message(msg.base, text));
}
else
{
pChannel->log(msg.base);
}
}
}
void OwnFormattingChannel::log(const Poco::Message & msg)
{
logExtended(ExtendedLogMessage::getFrom(msg));
}
OwnFormattingChannel::~OwnFormattingChannel() = default;
}