mirror of
https://github.com/PashaBibko/LX.git
synced 2026-04-04 09:59:03 +00:00
Now uses base error class which has an abstract function for overiding how it is displayed to the console.
30 lines
705 B
C++
30 lines
705 B
C++
#pragma once
|
|
|
|
#include <fstream>
|
|
|
|
// Defining this is only if you are at the point where you should be using a debugger //
|
|
#define LOG_EVERYTHING
|
|
|
|
namespace LX
|
|
{
|
|
|
|
template<typename... Args>
|
|
// Helper function for logging //
|
|
// Only logs the given args if the log is not null //
|
|
inline void SafeLog(std::ofstream* log, Args... args)
|
|
{
|
|
if (log != nullptr) { (*log << ... << args); *log << "\n"; }
|
|
}
|
|
|
|
inline void SafeFlush(std::ofstream* log)
|
|
{
|
|
if (log != nullptr)
|
|
{
|
|
log->flush();
|
|
}
|
|
}
|
|
|
|
// Gives a standard way to mark a change between different sections within the log output //
|
|
constexpr const char* LOG_BREAK = "\n-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-\n";
|
|
}
|