Removed old SHLog trace methods
This commit is contained in:
parent
c8ba066929
commit
d3103598f3
|
@ -44,13 +44,6 @@ namespace SHADE
|
||||||
SHLOG_FLOOR()
|
SHLOG_FLOOR()
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef _DEBUG
|
|
||||||
void SHLog::Trace(const std::string& msg) noexcept
|
|
||||||
{
|
|
||||||
SHLOG_TRACE(msg)
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
void SHLog_Info(const char* msg) noexcept
|
void SHLog_Info(const char* msg) noexcept
|
||||||
{
|
{
|
||||||
SHLOG_INFO(msg)
|
SHLOG_INFO(msg)
|
||||||
|
|
|
@ -323,34 +323,6 @@ namespace SHADE
|
||||||
SHLOG_FLOOR()
|
SHLOG_FLOOR()
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef _DEBUG
|
|
||||||
void SHLogger::LogTrace(const std::string& msg) noexcept
|
|
||||||
{
|
|
||||||
SHLOG_TRACE(msg)
|
|
||||||
}
|
|
||||||
|
|
||||||
void SHLogger::LogVerboseTrace(const std::string& msg, const std::source_location& src) noexcept
|
|
||||||
{
|
|
||||||
const bool SHOW_SRC_FILE = configFlags & (1U << 3);
|
|
||||||
const bool SHOW_SRC_LINE = configFlags & (1U << 4);
|
|
||||||
|
|
||||||
std::stringstream ss;
|
|
||||||
ss << "[";
|
|
||||||
if (SHOW_SRC_FILE)
|
|
||||||
{
|
|
||||||
ss << std::filesystem::path(src.file_name()).filename().string() << ", ";
|
|
||||||
if (SHOW_SRC_LINE)
|
|
||||||
{
|
|
||||||
ss << src.line() << ", ";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
ss << src.function_name() << "] " << msg;
|
|
||||||
|
|
||||||
SHLOG_TRACE(ss.str())
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/*-----------------------------------------------------------------------------------*/
|
/*-----------------------------------------------------------------------------------*/
|
||||||
/* Private Function Member Definitions */
|
/* Private Function Member Definitions */
|
||||||
/*-----------------------------------------------------------------------------------*/
|
/*-----------------------------------------------------------------------------------*/
|
||||||
|
|
Loading…
Reference in New Issue