39 lines
1.0 KiB
C++
39 lines
1.0 KiB
C++
#include <hex/helpers/logger.hpp>
|
|
#include <hex/helpers/fs.hpp>
|
|
#include <hex/helpers/fmt.hpp>
|
|
|
|
#include <wolv/io/file.hpp>
|
|
|
|
namespace hex::log::impl {
|
|
|
|
static wolv::io::File s_loggerFile;
|
|
std::mutex s_loggerMutex;
|
|
|
|
FILE *getDestination() {
|
|
if (s_loggerFile.isValid())
|
|
return s_loggerFile.getHandle();
|
|
else
|
|
return stdout;
|
|
}
|
|
|
|
wolv::io::File& getFile() {
|
|
return s_loggerFile;
|
|
}
|
|
|
|
bool isRedirected() {
|
|
return s_loggerFile.isValid();
|
|
}
|
|
|
|
void redirectToFile() {
|
|
if (s_loggerFile.isValid()) return;
|
|
|
|
for (const auto &path : fs::getDefaultPaths(fs::ImHexPath::Logs, true)) {
|
|
wolv::io::fs::createDirectories(path);
|
|
s_loggerFile = wolv::io::File(path / hex::format("{0:%Y%m%d_%H%M%S}.log", fmt::localtime(std::chrono::system_clock::to_time_t(std::chrono::system_clock::now()))), wolv::io::File::Mode::Create);
|
|
s_loggerFile.disableBuffering();
|
|
|
|
if (s_loggerFile.isValid()) break;
|
|
}
|
|
}
|
|
|
|
} |