1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-01-07 07:46:19 +01:00
dxvk/src/util/log/log.h
2018-04-02 19:05:20 +02:00

63 lines
1.2 KiB
C++

#pragma once
#include <array>
#include <fstream>
#include <iostream>
#include <mutex>
#include <string>
namespace dxvk {
enum class LogLevel : uint32_t {
Trace = 0,
Debug = 1,
Info = 2,
Warn = 3,
Error = 4,
None = 5,
};
/**
* \brief Logger
*
* Logger for one DLL. Creates a text file and
* writes all log messages to that file.
*/
class Logger {
public:
Logger(const std::string& file_name);
~Logger();
static void trace(const std::string& message);
static void debug(const std::string& message);
static void info (const std::string& message);
static void warn (const std::string& message);
static void err (const std::string& message);
static void log (LogLevel level, const std::string& message);
static LogLevel logLevel() {
return s_instance.m_minLevel;
}
private:
static Logger s_instance;
const LogLevel m_minLevel;
std::mutex m_mutex;
std::ofstream m_fileStream;
void emitMsg(LogLevel level, const std::string& message);
static LogLevel getMinLogLevel();
static std::string getFileName(
const std::string& base);
};
}