debug.h 288 B

12345678910111213141516171819
  1. /*
  2. * debug.h
  3. *
  4. * Created on: Dec 4, 2014
  5. * Author: Minh
  6. */
  7. #ifndef USER_DEBUG_H_
  8. #define USER_DEBUG_H_
  9. #if defined(MQTT_DEBUG_ON)
  10. #define MQTT_INFO( format, ... ) os_printf( format, ## __VA_ARGS__ )
  11. #else
  12. #define MQTT_INFO( format, ... )
  13. #endif
  14. #endif /* USER_DEBUG_H_ */