Fixed bugs with lexer

This commit is contained in:
Pasha Bibko
2025-07-20 18:38:42 +01:00
parent f95600f0b7
commit cc0300b66c
4 changed files with 9 additions and 9 deletions

View File

@@ -115,7 +115,7 @@ namespace LXC::Util
if (log.is_open()) _UNLIKELY
{
// Opening symbol to make the log look fancy //
log << "[LXC-M] \"";
log << "[LXC] \"";
// Fowards the arguments to the log and flushes //
(log << ... << args);
@@ -135,7 +135,7 @@ namespace LXC::Util
if (log.is_open()) _UNLIKELY
{
// Opening symbol to make log look fancy //
log << "[LXC-S] ";
log << "[LXC] ";
// Logic if it can call LogStr() //
if constexpr (HasLogStrFunc<T>)