15 lines
243 B
C
15 lines
243 B
C
|
|
#ifndef _LIB_LOG_H_
|
||
|
|
#define _LIB_LOG_H_
|
||
|
|
|
||
|
|
#include <spdlog/spdlog.h>
|
||
|
|
#include <spdlog/sinks/stdout_color_sinks.h>
|
||
|
|
#include <spdlog/sinks/rotating_file_sink.h>
|
||
|
|
|
||
|
|
#include <string>
|
||
|
|
|
||
|
|
using namespace std;
|
||
|
|
|
||
|
|
|
||
|
|
void spdlog_initz(string level);
|
||
|
|
|
||
|
|
#endif
|