mirror of
https://github.com/g4klx/MMDVMHost
synced 2025-12-21 15:09:23 +08:00
FInally login correctly to IAX.
This commit is contained in:
4
Log.cpp
4
Log.cpp
@@ -149,7 +149,7 @@ void Log(unsigned int level, const char* fmt, ...)
|
||||
{
|
||||
assert(fmt != NULL);
|
||||
|
||||
char buffer[501U];
|
||||
char buffer[2000U];
|
||||
#if defined(_WIN32) || defined(_WIN64)
|
||||
SYSTEMTIME st;
|
||||
::GetSystemTime(&st);
|
||||
@@ -167,7 +167,7 @@ void Log(unsigned int level, const char* fmt, ...)
|
||||
va_list vl;
|
||||
va_start(vl, fmt);
|
||||
|
||||
::vsnprintf(buffer + ::strlen(buffer), 500, fmt, vl);
|
||||
::vsnprintf(buffer + ::strlen(buffer), 1900, fmt, vl);
|
||||
|
||||
va_end(vl);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user