diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-04-27 01:16:21 +0200 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-04-27 01:16:21 +0200 |
commit | e02f9fd89b059919baf3a8d8bf8b783470976a27 (patch) | |
tree | 6bb16cce1231dba9b0eab5f43ceb7c5d86f8e7cb /deimos/core/log.cpp | |
parent | 08eece258ceff7824250454906bff013a7303c28 (diff) |
Some work on Vulkan initialization
Diffstat (limited to 'deimos/core/log.cpp')
-rw-r--r-- | deimos/core/log.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/deimos/core/log.cpp b/deimos/core/log.cpp index e05c360..b8e7805 100644 --- a/deimos/core/log.cpp +++ b/deimos/core/log.cpp @@ -35,10 +35,12 @@ public: m_writer(os_console_api, OsConsoleType::kStdOut)
{}
- void Log(LogSeverity severity, const SourceLocation& location, StringView msg) override
+ void Log(LogSeverity severity, const SourceLocation& /* location */, StringView msg) override
{
- Format(&m_writer, "$[ $ ] $:$: $\033[0m\n", SeverityToColor(severity),
- SeverityToStr(severity), location.file, location.line, msg);
+ // Format(&m_writer, "$[ $ ] $:$: $\033[0m\n", SeverityToColor(severity),
+ // SeverityToStr(severity), location.file, location.line, msg);
+ Format(&m_writer, "$[ $ ] $\033[0m\n", SeverityToColor(severity),
+ SeverityToStr(severity), msg);
}
};
|