logging: Factor out ctdb_logging.h from includes.h
authorMartin Schwenke <martin@meltin.net>
Tue, 9 Sep 2014 03:52:07 +0000 (13:52 +1000)
committerAmitay Isaacs <amitay@gmail.com>
Fri, 27 Mar 2015 02:58:17 +0000 (13:58 +1100)
Signed-off-by: Martin Schwenke <martin@meltin.net>
Reviewed-by: Amitay Isaacs <amitay@gmail.com>
(Imported from commit 97dc127b81c1923755b59aad6e735aa679af3f64)

include/ctdb_logging.h [new file with mode: 0644]
include/internal/includes.h

diff --git a/include/ctdb_logging.h b/include/ctdb_logging.h
new file mode 100644 (file)
index 0000000..a3be3a8
--- /dev/null
@@ -0,0 +1,41 @@
+/*
+   ctdb logging code
+
+   Copyright (C) Andrew Tridgell  2008
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program; if not, see <http://www.gnu.org/licenses/>.
+*/
+
+#ifndef _CTDB_LOGGING_H_
+#define _CTDB_LOGGING_H_
+
+extern int LogLevel;
+extern int this_log_level;
+
+enum debug_level {
+       DEBUG_EMERG   = -3,
+       DEBUG_ALERT   = -2,
+       DEBUG_CRIT    = -1,
+       DEBUG_ERR     =  0,
+       DEBUG_WARNING =  1,
+       DEBUG_NOTICE  =  2,
+       DEBUG_INFO    =  3,
+       DEBUG_DEBUG   =  4,
+};
+
+#define DEBUGLVL(lvl) ((lvl) <= LogLevel)
+#define DEBUG(lvl, x) do { this_log_level = (lvl); if ((lvl) < DEBUG_DEBUG) { log_ringbuffer x; } if ((lvl) <= LogLevel) { do_debug x; }} while (0)
+#define DEBUGADD(lvl, x) do { if ((lvl) <= LogLevel) { this_log_level = (lvl); do_debug_add x; }} while (0)
+
+#endif /* _CTDB_LOGGING_H_ */
index 36fb946d8757891e3185a698c0da696cae5f2319..185575a16873b74d1b1038e4a288ebcd2f60a622 100644 (file)
 
 #include "tevent.h"
 
-extern int LogLevel;
-extern int this_log_level;
-
-enum debug_level { 
-       DEBUG_EMERG   = -3, 
-       DEBUG_ALERT   = -2, 
-       DEBUG_CRIT    = -1,
-       DEBUG_ERR     =  0,
-       DEBUG_WARNING =  1,
-       DEBUG_NOTICE  =  2,     
-       DEBUG_INFO    =  3,
-       DEBUG_DEBUG   =  4,
-};
-
-#define DEBUGLVL(lvl) ((lvl) <= LogLevel)
-#define DEBUG(lvl, x) do { this_log_level = (lvl); if ((lvl) < DEBUG_DEBUG) { log_ringbuffer x; } if ((lvl) <= LogLevel) { do_debug x; }} while (0)
-#define DEBUGADD(lvl, x) do { if ((lvl) <= LogLevel) { this_log_level = (lvl); do_debug_add x; }} while (0)
+#include "ctdb_logging.h"
 
 #define _PUBLIC_
 #define _NORETURN_