2014-12-31 04:32:06 +00:00
|
|
|
/*
|
|
|
|
* debug.h
|
|
|
|
*
|
|
|
|
* Created on: Dec 4, 2014
|
|
|
|
* Author: Minh
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef USER_DEBUG_H_
|
|
|
|
#define USER_DEBUG_H_
|
|
|
|
|
2016-09-09 15:37:03 +00:00
|
|
|
|
2015-12-31 06:25:07 +00:00
|
|
|
#if defined(MQTT_DEBUG_ON)
|
2016-09-09 15:37:03 +00:00
|
|
|
#define MQTT_INFO( format, ... ) os_printf( format, ## __VA_ARGS__ )
|
2015-12-31 06:25:07 +00:00
|
|
|
#else
|
2016-09-09 15:37:03 +00:00
|
|
|
#define MQTT_INFO( format, ... )
|
2015-12-31 06:25:07 +00:00
|
|
|
#endif
|
2016-09-09 15:37:03 +00:00
|
|
|
|
2014-12-31 04:32:06 +00:00
|
|
|
|
|
|
|
#endif /* USER_DEBUG_H_ */
|