Обновление
This commit is contained in:
parent
019b6bce12
commit
b42c46f89a
|
|
@ -11,7 +11,8 @@
|
|||
#include "stdbool.h"
|
||||
|
||||
#define MAX_COUNT_BUF_LOG 10
|
||||
#define MAX_LEN_BUF_LOG 128
|
||||
#define MAX_LEN_PRINTF_BUF_LOG 256
|
||||
#define MAX_LEN_LOGGER_BUF_LOG 128
|
||||
#define MAX_LEN_BUF_NAME_LOG 16
|
||||
|
||||
typedef enum {
|
||||
|
|
|
|||
|
|
@ -762,7 +762,7 @@ void LoggerPrintf(
|
|||
va_list args;
|
||||
|
||||
va_start(args, fmt);
|
||||
result = vsnprintf(str, MAX_LEN_BUF_LOG, fmt, args);
|
||||
result = vsnprintf(str, MAX_LEN_PRINTF_BUF_LOG, fmt, args);
|
||||
va_end(args);
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue