* Rename StandardOut -> Logger.

This commit is contained in:
iProgramInCpp
2023-08-28 11:01:12 +03:00
parent 5c1ea03747
commit 8fe86fccb5
11 changed files with 38 additions and 38 deletions

View File

@@ -46,7 +46,7 @@ std::string Util::stringTrim(const std::string& str)
std::string Util::vformat(const char *fmt, va_list argPtr)
{
char str[1024];
char str[8192];
vsnprintf(str, sizeof(str), fmt, argPtr);