fixed with new libs
Dependents: SmartRemote WifiFlexManager SmartRemote E7
Fork of HTTPServer by
hl_debug.h@16:cc3f5c53d0d5, 2013-08-17 (annotated)
- Committer:
- leihen
- Date:
- Sat Aug 17 16:17:55 2013 +0000
- Revision:
- 16:cc3f5c53d0d5
- Parent:
- debug.h@15:909dcf44c3db
- Child:
- 18:5790d1dfe69f
- Removed old Debug message helper macros and replaced them with new hl_debug.h macros.
; - Renamed debug.h file to hl_debug.h to avoid conflict with EthernetInterface.
; - Fixed incorrectly used debug macro where an ERR was used instead of an INFO
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
leihen | 15:909dcf44c3db | 1 | #ifndef __DEBUG_H__ |
leihen | 15:909dcf44c3db | 2 | #define __DEBUG_H__ |
leihen | 15:909dcf44c3db | 3 | |
leihen | 15:909dcf44c3db | 4 | |
leihen | 15:909dcf44c3db | 5 | #ifdef DEBUG |
leihen | 15:909dcf44c3db | 6 | #define INFO(x, ...) std::printf("[INFO: %s:%d]"x"\r\n", __FILE__, __LINE__, ##__VA_ARGS__); |
leihen | 15:909dcf44c3db | 7 | #define WARN(x, ...) std::printf("[WARN: %s:%d]"x"\r\n", __FILE__, __LINE__, ##__VA_ARGS__); |
leihen | 15:909dcf44c3db | 8 | #define ERR(x, ...) std::printf("[ERR: %s:%d]"x"\r\n", __FILE__, __LINE__, ##__VA_ARGS__); |
leihen | 15:909dcf44c3db | 9 | #else |
leihen | 15:909dcf44c3db | 10 | #define INFO(x, ...) |
leihen | 15:909dcf44c3db | 11 | #define WARN(x, ...) |
leihen | 15:909dcf44c3db | 12 | #define ERR(x, ...) |
leihen | 15:909dcf44c3db | 13 | #endif |
leihen | 15:909dcf44c3db | 14 | |
leihen | 15:909dcf44c3db | 15 | |
leihen | 15:909dcf44c3db | 16 | #endif // __DEBUG_H__#ifndef __DEBUG_H__ |