Commit db08edce by Jamie Madill Committed by Commit Bot

Reduce logging in feature_support_util.

The very verbose logging was making the unit test output too much. Disable verbose logging by default. Bug: angleproject:3162 Change-Id: I1b675877c314573749c9808684bab0c60f7d6127 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/1821937Reviewed-by: 's avatarIan Elliott <ianelliott@google.com> Commit-Queue: Jamie Madill <jmadill@chromium.org>
parent 1057aaef
......@@ -41,7 +41,9 @@ namespace angle
# define WARN(...) printf(__VA_ARGS__)
# define INFO(...) printf(__VA_ARGS__)
# define DEBUG(...) printf(__VA_ARGS__)
# define VERBOSE(...) printf(__VA_ARGS__)
// Uncomment for debugging.
//# define VERBOSE(...) printf(__VA_ARGS__)
# define VERBOSE(...)
#endif // defined(ANDROID)
// JSON values are generally composed of either:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment