@@ -97,24 +97,24 @@ extern Arduino_DebugUtils Debug;
9797 * DEFINE
9898 **************************************************************************************/
9999
100- #ifndef DBG_ERROR
101- # define DBG_ERROR (fmt, ...) Debug.print(DBG_ERROR, fmt, ## __VA_ARGS__)
100+ #ifndef DEBUG_ERROR
101+ # define DEBUG_ERROR (fmt, ...) Debug.print(DBG_ERROR, fmt, ## __VA_ARGS__)
102102#endif
103103
104- #ifndef DBG_WARNING
105- # define DBG_WARNING (fmt, ...) Debug.print(DBG_WARNING, fmt, ## __VA_ARGS__)
104+ #ifndef DEBUG_WARNING
105+ # define DEBUG_WARNING (fmt, ...) Debug.print(DBG_WARNING, fmt, ## __VA_ARGS__)
106106#endif
107107
108- #ifndef DBG_INFO
109- # define DBG_INFO (fmt, ...) Debug.print(DBG_INFO, fmt, ## __VA_ARGS__)
108+ #ifndef DEBUG_INFO
109+ # define DEBUG_INFO (fmt, ...) Debug.print(DBG_INFO, fmt, ## __VA_ARGS__)
110110#endif
111111
112- #ifndef DBG_DEBUG
113- # define DBG_DEBUG (fmt, ...) Debug.print(DBG_DEBUG, fmt, ## __VA_ARGS__)
112+ #ifndef DEBUG_DEBUG
113+ # define DEBUG_DEBUG (fmt, ...) Debug.print(DBG_DEBUG, fmt, ## __VA_ARGS__)
114114#endif
115115
116- #ifndef DBG_VERBOSE
117- # define DBG_VERBOSE (fmt, ...) Debug.print(DBG_VERBOSE, fmt, ## __VA_ARGS__)
116+ #ifndef DEBUG_VERBOSE
117+ # define DEBUG_VERBOSE (fmt, ...) Debug.print(DBG_VERBOSE, fmt, ## __VA_ARGS__)
118118#endif
119119
120120#endif /* ARDUINO_DEBUG_UTILS_H_ */
0 commit comments