mirror of
https://github.com/BeamMP/BeamMP-Launcher.git
synced 2025-07-01 15:36:10 +00:00
85 lines
2.4 KiB
C++
85 lines
2.4 KiB
C++
/*
|
|
Copyright (C) 2024 BeamMP Ltd., BeamMP team and contributors.
|
|
Licensed under AGPL-3.0 (or later), see <https://www.gnu.org/licenses/>.
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
|
|
#include "Logger.h"
|
|
#include "Startup.h"
|
|
#include <chrono>
|
|
#include <fstream>
|
|
#include <sstream>
|
|
#include <thread>
|
|
#include "Options.h"
|
|
|
|
std::string getDate() {
|
|
time_t tt = std::chrono::system_clock::to_time_t(std::chrono::system_clock::now());
|
|
tm local_tm = *localtime(&tt);
|
|
std::stringstream date;
|
|
int S = local_tm.tm_sec;
|
|
int M = local_tm.tm_min;
|
|
int H = local_tm.tm_hour;
|
|
std::string Secs = (S > 9 ? std::to_string(S) : "0" + std::to_string(S));
|
|
std::string Min = (M > 9 ? std::to_string(M) : "0" + std::to_string(M));
|
|
std::string Hour = (H > 9 ? std::to_string(H) : "0" + std::to_string(H));
|
|
date
|
|
<< "["
|
|
<< local_tm.tm_mday << "/"
|
|
<< local_tm.tm_mon + 1 << "/"
|
|
<< local_tm.tm_year + 1900 << " "
|
|
<< Hour << ":"
|
|
<< Min << ":"
|
|
<< Secs
|
|
<< "] ";
|
|
return date.str();
|
|
}
|
|
void InitLog() {
|
|
std::ofstream LFS;
|
|
LFS.open(GetEP() + "Launcher.log");
|
|
if (!LFS.is_open()) {
|
|
error("logger file init failed!");
|
|
} else
|
|
LFS.close();
|
|
}
|
|
void addToLog(const std::string& Line) {
|
|
std::ofstream LFS;
|
|
LFS.open(GetEP() + "Launcher.log", std::ios_base::app);
|
|
LFS << Line.c_str();
|
|
LFS.close();
|
|
}
|
|
void info(const std::string& toPrint) {
|
|
std::string Print = getDate() + "[INFO] " + toPrint + "\n";
|
|
std::cout << Print;
|
|
addToLog(Print);
|
|
}
|
|
void debug(const std::string& toPrint) {
|
|
std::string Print = getDate() + "[DEBUG] " + toPrint + "\n";
|
|
if (options.verbose) {
|
|
std::cout << Print;
|
|
}
|
|
addToLog(Print);
|
|
}
|
|
void warn(const std::string& toPrint) {
|
|
std::string Print = getDate() + "[WARN] " + toPrint + "\n";
|
|
std::cout << Print;
|
|
addToLog(Print);
|
|
}
|
|
void error(const std::string& toPrint) {
|
|
std::string Print = getDate() + "[ERROR] " + toPrint + "\n";
|
|
std::cout << Print;
|
|
addToLog(Print);
|
|
}
|
|
void fatal(const std::string& toPrint) {
|
|
std::string Print = getDate() + "[FATAL] " + toPrint + "\n";
|
|
std::cout << Print;
|
|
addToLog(Print);
|
|
std::this_thread::sleep_for(std::chrono::seconds(5));
|
|
std::exit(1);
|
|
}
|
|
void except(const std::string& toPrint) {
|
|
std::string Print = getDate() + "[EXCEP] " + toPrint + "\n";
|
|
std::cout << Print;
|
|
addToLog(Print);
|
|
}
|