summaryrefslogtreecommitdiff
path: root/src/core/logs.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/logs.c')
-rw-r--r--src/core/logs.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/core/logs.c b/src/core/logs.c
index 417039b..ec910e1 100644
--- a/src/core/logs.c
+++ b/src/core/logs.c
@@ -34,6 +34,9 @@
+/* ------------------------ EMISSIONS DE MESSAGES CLASSIQUES ------------------------ */
+
+
/* Tranche d'allocation pour les messages complexes */
#define VARIADIC_LOG_BUFSIZE 256
@@ -46,6 +49,11 @@ static void print_message_without_gui(LogMessageType, const char *);
+/* ---------------------------------------------------------------------------------- */
+/* EMISSIONS DE MESSAGES CLASSIQUES */
+/* ---------------------------------------------------------------------------------- */
+
+
/******************************************************************************
* *
* Paramètres : - *
@@ -251,8 +259,9 @@ static void print_message_without_gui(LogMessageType type, const char *msg)
prefix = FOREGROUND_RED "!" RESET;
break;
- case LMT_ERROR:
case LMT_BAD_BINARY:
+ case LMT_ERROR:
+ case LMT_EXT_ERROR:
prefix = BACKGROUND_RED "!" RESET;
break;