logger.h
来自「C++高级编程这本书所附的源代码」· C头文件 代码 · 共 40 行
H
40 行
/**
* Logger.h
*
* Definition of a singleton logger class, implemented with static methods.
*/
#include <iostream>
#include <fstream>
#include <vector>
class Logger
{
public:
static const std::string kLogLevelDebug;
static const std::string kLogLevelInfo;
static const std::string kLogLevelError;
// Logs a single message at the given log level
static void log(const std::string& inMessage,
const std::string& inLogLevel);
// Logs a vector of messages at the given log level
static void log(const std::vector<std::string>& inMessages,
const std::string& inLogLevel);
// Closes the log file
static void teardown();
protected:
static void init();
static const char* const kLogFileName;
static bool sInitialized;
static std::ofstream sOutputStream;
private:
Logger() {}
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?