diff options
author | José Bollo <jose.bollo@iot.bzh> | 2017-08-29 16:28:17 +0200 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2017-08-29 16:28:17 +0200 |
commit | 6d8d9dc5aad148a74bcdf8965bee9f7058a08166 (patch) | |
tree | dc187ee42701ffba853fbe09da25f033441628a4 /include/afb | |
parent | 543de3c28b417cc9a05df63ab8650201af1bae15 (diff) |
verbosity: split verbosity level 1 in 2 levels
Change-Id: I32a96f1863caffa6a17c25f52d06538f8eb60555
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'include/afb')
-rw-r--r-- | include/afb/afb-verbosity.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/afb/afb-verbosity.h b/include/afb/afb-verbosity.h index 1a74654c..6c297562 100644 --- a/include/afb/afb-verbosity.h +++ b/include/afb/afb-verbosity.h @@ -19,9 +19,9 @@ #define AFB_VERBOSITY_LEVEL_ERROR 0 #define AFB_VERBOSITY_LEVEL_WARNING 1 -#define AFB_VERBOSITY_LEVEL_NOTICE 1 -#define AFB_VERBOSITY_LEVEL_INFO 2 -#define AFB_VERBOSITY_LEVEL_DEBUG 3 +#define AFB_VERBOSITY_LEVEL_NOTICE 2 +#define AFB_VERBOSITY_LEVEL_INFO 3 +#define AFB_VERBOSITY_LEVEL_DEBUG 4 #define _AFB_SYSLOG_LEVEL_ERROR_ 3 #define _AFB_SYSLOG_LEVEL_WARNING_ 4 |