feat: add some info and app logging messages

This commit is contained in:
k0t9i
2023-10-17 23:08:41 +04:00
parent ab85800275
commit a2428bb0d1
12 changed files with 63 additions and 16 deletions

View File

@ -28,7 +28,7 @@ protected:
0,
static_cast<uint8_t>(m_ChatChannel),
L"",
GetCurrentDateTime() + logEntry
logEntry
}
}
);

View File

@ -14,6 +14,6 @@ public:
protected:
void DoSendToChannel(const std::wstring& logEntry) override
{
OutputDebugStringW((GetCurrentDateTime() + logEntry).c_str());
OutputDebugStringW(logEntry.c_str());
}
};