⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 logger.h

📁 C++高级编程这本书所附的源代码
💻 H
字号:
/**
 * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -