aboutsummaryrefslogtreecommitdiff
path: root/src/openvic/utility/Logger.cpp
blob: bf9a67c24ca3541442bdea88a6ad4bd1e1c56aac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "Logger.hpp"

#include <iostream>

using namespace OpenVic;

Logger::log_func_t Logger::info_func {};
Logger::log_queue_t Logger::info_queue {};
Logger::log_func_t Logger::error_func {};
Logger::log_queue_t Logger::error_queue {};

char const* Logger::get_filename(char const* filepath) {
   if (filepath == nullptr) return nullptr;
   char const* last_slash = filepath;
   while (*filepath != '\0') {
      if (*filepath == '\\' || *filepath == '/') last_slash = filepath + 1;
      filepath++;
   }
   return last_slash;
}