Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of HTTPServer by
debug.h@15:909dcf44c3db, 2013-08-17 (annotated)
- Committer:
- leihen
- Date:
- Sat Aug 17 15:34:07 2013 +0000
- Revision:
- 15:909dcf44c3db
Added missing debug.h
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__ |