diff options
author | José Bollo <jose.bollo@iot.bzh> | 2017-06-28 15:35:01 +0200 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2017-06-28 15:35:01 +0200 |
commit | 54f684cd8723a3d7b78a68a6131f3a27fc38f9c6 (patch) | |
tree | 2cfad2efca3fd21ecd5f87cd1b8fa86c2716dcb0 /include/afb/afb-verbosity.h | |
parent | 404d36e7ce15941d07bded3c70ad91070a4d4a35 (diff) |
Use constants for verbosity and syslog levels
Change-Id: I98a765f7c40d77fbc565ed13aa6e9bba48cf3244
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'include/afb/afb-verbosity.h')
-rw-r--r-- | include/afb/afb-verbosity.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/include/afb/afb-verbosity.h b/include/afb/afb-verbosity.h new file mode 100644 index 00000000..1a74654c --- /dev/null +++ b/include/afb/afb-verbosity.h @@ -0,0 +1,31 @@ +/* + * Copyright (C) 2016, 2017 "IoT.bzh" + * Author: José Bollo <jose.bollo@iot.bzh> + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#pragma once + +#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_SYSLOG_LEVEL_ERROR_ 3 +#define _AFB_SYSLOG_LEVEL_WARNING_ 4 +#define _AFB_SYSLOG_LEVEL_NOTICE_ 5 +#define _AFB_SYSLOG_LEVEL_INFO_ 6 +#define _AFB_SYSLOG_LEVEL_DEBUG_ 7 + |