Fast map matching  0.1.0
debug.hpp
1 
10 #ifndef FMM_DEBUG_HPP
11 #define FMM_DEBUG_HPP
12 
13 #include "spdlog/spdlog.h"
14 #include "spdlog/fmt/ostr.h" // must be included for custom operator
15 #include "spdlog/sinks/stdout_color_sinks.h"
16 #include "spdlog/sinks/basic_file_sink.h" // support for basic file logging
17 #include "spdlog/sinks/rotating_file_sink.h"
18 #include <string>
19 
20 
21 namespace FMM {
22 namespace UTIL{
23 
27 static const std::vector<std::string>
28  LOG_LEVESLS {"0-trace","1-debug","2-info",
29  "3-warn","4-err","5-critical","6-off"};
30 }; // UTIL
31 }; // FMM
32 
33 #endif // MM_DEBUG_HPP
FMM::UTIL::LOG_LEVESLS
static const std::vector< std::string > LOG_LEVESLS
Log level strings for printing the log level information.
Definition: debug.hpp:28
FMM
Fast map matching.
Definition: geom_algorithm.hpp:17