reverted HTTPCLient debug back to defaulted off
Fork of HTTPClient-SSL by
Revision 40:6d9725c3eb6f, committed 2015-01-19
- Comitter:
- Vanger
- Date:
- Mon Jan 19 22:40:21 2015 +0000
- Parent:
- 39:d7c5541a9124
- Child:
- 41:236fa1143e5a
- Commit message:
- Finalized code for an example HTTPS client to axeda's device IoT server.;
Changed in this revision
HTTPClient.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/HTTPClient.cpp Mon Jan 19 21:55:15 2015 +0000 +++ b/HTTPClient.cpp Mon Jan 19 22:40:21 2015 +0000 @@ -22,7 +22,7 @@ #define MAX_URL_PATH_LENGTH 128 //Debug is disabled by default -#if 1 +#if 0 //Enable debug #include <cstdio> #define DBG(x, ...) std::printf("[HTTPClient : DBG]"x"\r\n", ##__VA_ARGS__);