undo debug changes

This commit is contained in:
David Markowitz
2024-05-18 03:39:25 -07:00
parent 0c4108e730
commit 387c37505c
3 changed files with 6 additions and 6 deletions

View File

@@ -53,8 +53,8 @@ void Logger::vLog(const char* format, va_list args) {
struct tm* time = localtime(&t);
char timeStr[70];
strftime(timeStr, sizeof(timeStr), "[%d-%m-%y %H:%M:%S ", time);
char message[131072];
vsnprintf(message, 131072, format, args);
char message[2048];
vsnprintf(message, 2048, format, args);
for (const auto& writer : m_Writers) {
writer->Log(timeStr, message);
}