Changed color of debug infos to green.

This commit is contained in:
Ulysse Cura 2026-08-14 17:23:48 +02:00
parent e0e0587a16
commit 95167c91e8
1 changed files with 2 additions and 2 deletions

View File

@ -12,11 +12,11 @@
#if DEBUG > 0
#define debug_printf(...) \
do { \
fprintf(stderr, "\033[33mINFO\033[m: " __VA_ARGS__); \
fprintf(stderr, "\033[32mINFO\033[m: " __VA_ARGS__); \
fputc('\n', stderr); \
} while (0)
#else
#define debug_printf(...) do {} while (0)
#define debug_printf(...)
#endif
#define warning_printf(...) \