Skip to content

Commit

Permalink
Disable CSS messages for now
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
rodarima committed Aug 7, 2024
1 parent a6fe7e3 commit 3d4bfaa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/cssparser.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3d4bfaa

Please sign in to comment.