0
0
Files
build/lib/liblog.h

15 lines
243 B
C
Raw Permalink Normal View History

#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