aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRodrigo Arias Mallo <rodarima@gmail.com>2024-08-07 13:38:42 +0200
committerRodrigo Arias Mallo <rodarima@gmail.com>2024-08-07 20:50:53 +0200
commit32e67009a994fafc257b042c29ffb76aed7dbe7d (patch)
treebcba33c86fe6af3acfa9e2da88cba4c17110499a /src
parentb298347fdcaee0d44b7b0b39f9764fba4cf7415c (diff)
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.
Diffstat (limited to 'src')
-rw-r--r--src/cssparser.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cssparser.cc b/src/cssparser.cc
index 893f595a..1e5c5731 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