Merge tag '1.2.0' into debian
[fw/stlink] / src / uglylogging.h
index 7099d919ca5c943a6cea164440f4e878b010fff3..df816caedcf7dbc89382c752ee706aff0c77870f 100644 (file)
@@ -9,14 +9,16 @@
 extern "C" {
 #endif
 
-#define UDEBUG 90
-#define UINFO  50
-#define UWARN  30
-#define UERROR 20
-#define UFATAL 10
-
-    int ugly_init(int maximum_threshold);
-    int ugly_log(int level, const char *tag, const char *format, ...);
+enum ugly_loglevel {
+       UDEBUG = 90,
+       UINFO  = 50,
+       UWARN  = 30,
+       UERROR = 20,
+       UFATAL = 10
+};
+
+int ugly_init(int maximum_threshold);
+int ugly_log(int level, const char *tag, const char *format, ...);
 
 #define DLOG(format, args...)   ugly_log(UDEBUG, __FILE__, format, ## args)
 #define ILOG(format, args...)   ugly_log(UINFO, __FILE__, format, ## args)