From 54f684cd8723a3d7b78a68a6131f3a27fc38f9c6 Mon Sep 17 00:00:00 2001 From: José Bollo Date: Wed, 28 Jun 2017 15:35:01 +0200 Subject: Use constants for verbosity and syslog levels MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I98a765f7c40d77fbc565ed13aa6e9bba48cf3244 Signed-off-by: José Bollo --- include/afb/afb-verbosity.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 include/afb/afb-verbosity.h (limited to 'include/afb/afb-verbosity.h') 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 + * + * 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 + -- cgit 1.2.3-korg