NOTICE messages should require higher LOG_LEVEL than WARN, not the other way around.
Signed-off-by: Baruch Siach baruch@tkos.co.il Change-Id: Iba9c67cafed19be47e7d03198faa98fbf99a10ee ---
I still can't upload to review.trustedfirmware.org so I'm once again sending to the list instead.
https://lists.trustedfirmware.org/archives/list/tf-a@lists.trustedfirmware.o... --- tools/cert_create/include/debug.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/cert_create/include/debug.h b/tools/cert_create/include/debug.h index ee8f1f51786f..8f7c62eefe2d 100644 --- a/tools/cert_create/include/debug.h +++ b/tools/cert_create/include/debug.h @@ -20,8 +20,8 @@
#define LOG_LEVEL_NONE 0 #define LOG_LEVEL_ERROR 10 -#define LOG_LEVEL_NOTICE 20 -#define LOG_LEVEL_WARNING 30 +#define LOG_LEVEL_WARNING 20 +#define LOG_LEVEL_NOTICE 30 #define LOG_LEVEL_INFO 40 #define LOG_LEVEL_VERBOSE 50