Imported Upstream version 0.2.5
[platform/upstream/libtirpc.git] / src / debug.h
1 /*
2  * debug.h -- debugging routines for libtirpc
3  *
4  * Copyright (C) 2014  Red Hat, Steve Dickson <steved@redhat.com>
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2
9  * of the License, or (at your option) any later version.
10  *
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.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor,
19  * Boston, MA 02110-1301, USA.
20  */
21
22 #ifndef _DEBUG_H
23 #define _DEBUG_H
24 #include <syslog.h>
25
26 extern int libtirpc_debug_level;
27 extern int  log_stderr;
28
29 void    libtirpc_log_dbg(char *format, ...);
30 void    libtirpc_set_debug(char *name, int level, int use_stderr);
31
32 #define LIBTIRPC_DEBUG(level, msg) \
33         do { \
34                 if (level <= libtirpc_debug_level) \
35                         libtirpc_log_dbg msg; \
36         } while (0)
37
38 static inline void 
39 vlibtirpc_log_dbg(int level, const char *fmt, va_list args)
40 {
41         if (level <= libtirpc_debug_level) {
42                 if (log_stderr) {
43                         vfprintf(stderr, fmt, args);
44                         fprintf(stderr, "\n");
45                 } else
46                         vsyslog(LOG_NOTICE, fmt, args);
47         }
48 }
49 #endif /* _DEBUG_H */