Own fork of MbedSmartRestMain
Dependencies: C027_Support C12832 LM75B MMA7660 MbedSmartRest mbed-rtos mbed
Fork of MbedSmartRestMain by
Diff: logging/logging.h
- Revision:
- 75:d4535238db18
- Parent:
- 73:313975bfec96
- Child:
- 77:f6717e4eccc4
diff -r ca3001991fdc -r d4535238db18 logging/logging.h --- a/logging/logging.h Wed Feb 18 10:17:29 2015 +0000 +++ b/logging/logging.h Wed Feb 18 10:19:51 2015 +0000 @@ -6,8 +6,8 @@ */ enum aLogLevel{ A_DEBUG=10, - A_WARNING=20, - A_INFO=30, + A_INFO=20, + A_WARNING=30, A_ERROR=40, A_CRITICAL=50 }; @@ -18,10 +18,10 @@ * must correspond to the given format, like in printf. */ int aDebug(const char *fmt, ...); -int aCritical(const char *fmt, ...); -int aError(const char *fmt, ...); int aInfo(const char *fmt, ...); int aWarning(const char *fmt, ...); +int aError(const char *fmt, ...); +int aCritical(const char *fmt, ...); aLogLevel getLevel(); void setLevel(aLogLevel lvl);