From eb9e9e5614a603550538581aa43622f9996e664b Mon Sep 17 00:00:00 2001 From: Siddharth Chandrasekaran Date: Thu, 29 Feb 2024 22:44:50 +0100 Subject: [PATCH] logger: Increase the size of logger name string Signed-off-by: Siddharth Chandrasekaran --- include/utils/logger.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/utils/logger.h b/include/utils/logger.h index 419c5f4..909805f 100644 --- a/include/utils/logger.h +++ b/include/utils/logger.h @@ -15,7 +15,7 @@ extern "C" { #endif -#define LOGGER_NAME_MAXLEN 16 +#define LOGGER_NAME_MAXLEN 32 /** * @brief A printf() like method that will be used to write out log lines.