mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 07:32:27 +00:00
35 lines
983 B
C++
35 lines
983 B
C++
#pragma once
|
|
|
|
|
|
#include <Poco/PatternFormatter.h>
|
|
#include "ExtendedLogChannel.h"
|
|
|
|
|
|
/** Format log messages own way.
|
|
* We can't obtain some details using Poco::PatternFormatter.
|
|
*
|
|
* Firstly, the thread number here is peaked not from Poco::Thread
|
|
* threads only, but from all threads with number assigned (see ThreadNumber.h)
|
|
*
|
|
* Secondly, the local date and time are correctly displayed.
|
|
* Poco::PatternFormatter does not work well with local time,
|
|
* when timestamps are close to DST timeshift moments.
|
|
* - see Poco sources and http://thread.gmane.org/gmane.comp.time.tz/8883
|
|
*
|
|
* Also it's made a bit more efficient (unimportant).
|
|
*/
|
|
|
|
class Loggers;
|
|
|
|
class OwnPatternFormatter : public Poco::PatternFormatter
|
|
{
|
|
public:
|
|
OwnPatternFormatter(bool color_ = false);
|
|
|
|
void format(const Poco::Message & msg, std::string & text) override;
|
|
void formatExtended(const DB::ExtendedLogMessage & msg_ext, std::string & text) const;
|
|
|
|
private:
|
|
bool color;
|
|
};
|