TAMSVIZ
Visualization and annotation tool for ROS
log.cpp
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #include "log.h"
5 
6 #include <cstring>
7 
8 #define RGB(r, g, b) "\033[38;2;" #r ";" #g ";" #b "m"
9 #define RESET "\e[0m"
10 #define NEWLINE "\n"
11 
12 LogManager::LogManager() {
13  received.connect([](const LogMessage &m) {
14  static std::mutex mutex;
15  std::lock_guard<std::mutex> lock(mutex);
16  const char *file = m.file();
17  if (auto *c = std::strrchr(file, '/')) {
18  file = c + 1;
19  }
20  const char *color = RGB(255, 255, 255);
21  switch (m.level()) {
22  case LogLevel::Debug:
23  color = RGB(220, 220, 220);
24  break;
25  case LogLevel::Info:
26  color = RGB(255, 255, 255) "\e[1m";
27  break;
28  case LogLevel::Warn:
29  color = RGB(255, 255, 0) "\e[1m";
30  break;
31  case LogLevel::Error:
32  color = RGB(255, 50, 0) "\e[1m";
33  break;
34  case LogLevel::Fatal:
35  color = RGB(255, 50, 0) "\e[1m";
36  break;
37  case LogLevel::Success:
38  color = RGB(50, 255, 0) "\e[1m";
39  break;
40  }
41  std::cout << color << m.message() << RESET << RGB(100, 100, 100) << " "
42  << m.function() << " " << file << ":" << m.line() << " "
43  << m.node() << RESET << NEWLINE;
44  });
45 }
46 
47 static LogManager g_log_manager_instance;
48 LogManager &LogManager::instance() { return g_log_manager_instance; }
Definition: log.h:43
Definition: log.h:20