要在C++项目中模拟Log4j日志功能,你可以创建一个简单的日志系统,类似于Log4j。以下是一个简单的示例,展示了如何在C++项目中实现日志记录功能:
#pragma once
#include <iostream>
#include <fstream>
#include <string>
#include <ctime>
class Logger {
public:
static void log(const std::string& message, const std::string& level);
private:
static const std::string log_file;
static const std::string time_format;
};
#include "Logger.h"
const std::string Logger::log_file = "log.txt";
const std::string Logger::time_format = "%Y-%m-%d %H:%M:%S";
void Logger::log(const std::string& message, const std::string& level) {
std::ofstream log_file(Logger::log_file, std::ios::app);
if (!log_file.is_open()) {
std::cerr << "Error opening log file." << std::endl;
return;
}
time_t now = std::time(nullptr);
std::tm* local_now = std::localtime(&now);
std::string timestamp = std::to_string(local_now->tm_year + 1900) + "-"
+ std::to_string(local_now->tm_mon + 1) + "-"
+ std::to_string(local_now->tm_mday) + " "
+ std::to_string(local_now->tm_hour) + ":"
+ std::to_string(local_now->tm_min) + ":"
+ std::to_string(local_now->tm_sec);
log_file << "[" << timestamp << "] " << level << ": " << message << std::endl;
log_file.close();
}
#include "Logger.h"
int main() {
Logger::log("This is an info message.", "INFO");
Logger::log("This is a warning message.", "WARNING");
Logger::log("This is an error message.", "ERROR");
return 0;
}
这个简单的示例展示了如何在C++项目中实现一个基本的日志系统。你可以根据需要扩展这个类,例如添加更多的日志级别、格式化选项等。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。