From 3d4bfaae3bc2e41ff19372d697dfe4a26e690f55 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Wed, 7 Aug 2024 13:38:42 +0200 Subject: [PATCH] Disable CSS messages for now Long CSS stylesheets may fill the console output hiding important messages. For now let's disable them, until we improve the mechanism to select which messages should be enabled at runtime. --- src/cssparser.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/cssparser.cc b/src/cssparser.cc index 893f595a6..1e5c5731d 100644 --- a/src/cssparser.cc +++ b/src/cssparser.cc @@ -27,7 +27,8 @@ using namespace dw::core::style; -#define MSG_CSS(A, ...) MSG(A, __VA_ARGS__) +//#define MSG_CSS(A, ...) _MSG(A, __VA_ARGS__) +#define MSG_CSS(A, ...) do {} while(0) #define DEBUG_TOKEN_LEVEL 0 #define DEBUG_PARSE_LEVEL 0 #define DEBUG_CREATE_LEVEL 0