Bug 1540028 [wpt PR 16099] - Catch more exceptions in Document-createElement-namespac...
[gecko.git] / widget / android / AndroidBridgeUtilities.h
blob6537dcf3f90fb2448186d26b21febb3b088f4283
1 #ifndef ALOG
2 # if defined(DEBUG) || defined(FORCE_ALOG)
3 # define ALOG(args...) __android_log_print(ANDROID_LOG_INFO, "Gecko", ##args)
4 # else
5 # define ALOG(args...) ((void)0)
6 # endif
7 #endif
9 #ifdef DEBUG
10 # define ALOG_BRIDGE(args...) ALOG(args)
11 #else
12 # define ALOG_BRIDGE(args...) ((void)0)
13 #endif