mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
25 lines
465 B
C++
25 lines
465 B
C++
#include "stdafx.h"
|
|
#include "rpcs3/Ini.h"
|
|
#include "Utilities/Log.h"
|
|
#include "Emu/System.h"
|
|
#include "LogBase.h"
|
|
|
|
bool LogBase::CheckLogging() const
|
|
{
|
|
return Ini.HLELogging.GetValue();
|
|
}
|
|
|
|
void LogBase::LogNotice(const std::string& text)
|
|
{
|
|
LOG_NOTICE(HLE, "%s", text.c_str());
|
|
}
|
|
|
|
void LogBase::LogWarning(const std::string& text)
|
|
{
|
|
LOG_WARNING(HLE, "%s", text.c_str());
|
|
}
|
|
|
|
void LogBase::LogError(const std::string& text)
|
|
{
|
|
LOG_ERROR(HLE, "%s", text.c_str());
|
|
} |