blob: 4d7378ec879fe2ce9caa6f04b99ecfc4cd988be5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#include "Logger.hpp"
#include <iostream>
using namespace OpenVic2;
Logger::log_func_t Logger::info_func = [](std::string&& str) { std::cout << str; };
Logger::log_func_t Logger::error_func = [](std::string&& str) { std::cerr << str; };
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;
}
void Logger::set_info_func(log_func_t log_func) {
info_func = log_func;
}
void Logger::set_error_func(log_func_t log_func) {
error_func = log_func;
}
|