Make UC_LL_NONE work

This commit is contained in:
Nils O. Selåsdal
2013-06-20 19:55:09 +02:00
parent 012a5b1377
commit 84153e90db
2 changed files with 10 additions and 5 deletions
+4 -2
View File
@@ -71,13 +71,15 @@
extern "C" {
#endif
/** The log levels defined by ucore logging*/
/** The log levels defined by ucore logging
* UC_LL_NONE must not be used in logging statements - but
* can be used to suppress all logging for a destination or module*/
enum UC_LOG_LEVEL {
UC_LL_NONE = 0,
UC_LL_DEBUG = 1,
UC_LL_INFO = 3,
UC_LL_WARNING = 5,
UC_LL_ERROR = 7,
UC_LL_NONE = 9,
};
/** A destination for the logging messages*/