ctdb-logging: Rework debug level parsing
[Samba.git] / ctdb / include / ctdb_logging.h
blob615e41afc21d4a3f779a17a168ecb9ef3ed234b1
1 /*
2 ctdb logging code
4 Copyright (C) Andrew Tridgell 2008
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, see <http://www.gnu.org/licenses/>.
20 #ifndef _CTDB_LOGGING_H_
21 #define _CTDB_LOGGING_H_
23 #include <stdbool.h>
24 #include <stdint.h>
25 #include <stdio.h>
27 extern const char *debug_extra;
29 enum debug_level {
30 DEBUG_ERR = 0,
31 DEBUG_WARNING = 1,
32 DEBUG_NOTICE = 2,
33 DEBUG_INFO = 3,
34 DEBUG_DEBUG = 4,
37 /* These are used in many places, so define them here to avoid churn */
38 #define DEBUG_ALERT DEBUG_ERR
39 #define DEBUG_CRIT DEBUG_ERR
41 const char *get_debug_by_level(int32_t level);
42 bool parse_debug(const char *str, int32_t *level);
43 void print_debug_levels(FILE *stream);
45 #endif /* _CTDB_LOGGING_H_ */