Enlarge buffer for log messages

For example, SSL/TLS certificate information can easily get longer than
256 characters. So enlarge the log buffer to 1 KB.
This commit is contained in:
Alexander Barton
2024-01-06 16:21:01 +01:00
parent 21c1751b04
commit 7c90264f1f
+1 -1
View File
@@ -39,7 +39,7 @@
#define LINE_LEN 1024
/** Max. length of a log message. */
#define MAX_LOG_MSG_LEN 256
#define MAX_LOG_MSG_LEN 1024
/** Max. length of file name. */
#define FNAME_LEN 256