1
0
Fork 0

New graphs log topic.

This commit is contained in:
Max Neunhoeffer 2016-10-04 16:50:09 +02:00
parent 0b35e28010
commit 4f56551eed
2 changed files with 2 additions and 0 deletions

View File

@ -47,6 +47,7 @@ LogTopic Logger::COMMUNICATION("communication", LogLevel::INFO);
LogTopic Logger::COMPACTOR("compactor"); LogTopic Logger::COMPACTOR("compactor");
LogTopic Logger::CONFIG("config"); LogTopic Logger::CONFIG("config");
LogTopic Logger::DATAFILES("datafiles", LogLevel::INFO); LogTopic Logger::DATAFILES("datafiles", LogLevel::INFO);
LogTopic Logger::GRAPHS("graphs", LogLevel::INFO);
LogTopic Logger::HEARTBEAT("heartbeat", LogLevel::INFO); LogTopic Logger::HEARTBEAT("heartbeat", LogLevel::INFO);
LogTopic Logger::MMAP("mmap"); LogTopic Logger::MMAP("mmap");
LogTopic Logger::PERFORMANCE("performance", LogLevel::FATAL); // suppress LogTopic Logger::PERFORMANCE("performance", LogLevel::FATAL); // suppress

View File

@ -135,6 +135,7 @@ class Logger {
static LogTopic CONFIG; static LogTopic CONFIG;
static LogTopic CLUSTER; static LogTopic CLUSTER;
static LogTopic DATAFILES; static LogTopic DATAFILES;
static LogTopic GRAPHS;
static LogTopic HEARTBEAT; static LogTopic HEARTBEAT;
static LogTopic MMAP; static LogTopic MMAP;
static LogTopic PERFORMANCE; static LogTopic PERFORMANCE;