您好,登錄后才能下訂單哦!
要在C++項目中模擬Log4j日志功能,你可以創(chuàng)建一個簡單的日志系統(tǒng),類似于Log4j。以下是一個簡單的示例,展示了如何在C++項目中實現(xiàn)日志記錄功能:
#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++項目中實現(xiàn)一個基本的日志系統(tǒng)。你可以根據(jù)需要擴展這個類,例如添加更多的日志級別、格式化選項等。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。