Imported Upstream version 0.2.5
[platform/upstream/libtirpc.git] / src / debug.c
1 /*
2  * debug.c -- 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 #include <sys/types.h>
22 #include <stdio.h>
23 #include <stdarg.h>
24 #include <unistd.h>
25 #include <syslog.h>
26 #include <string.h>
27
28 #include "debug.h"
29
30 /* library global debug level */
31 int libtirpc_debug_level = 0;
32 int  log_stderr = 1; /* log to stderr instead of systlog */
33
34 /*
35  * Set the debug level for the entire library.
36  * Different area will used the value to determin
37  * the verbosity of the debugging output.
38  */
39 void
40 libtirpc_set_debug(char *name, int level, int use_stderr)
41 {
42         if (level < 0)
43                 level = 0;
44
45         log_stderr = use_stderr;
46         if (!use_stderr)
47                 openlog(name, LOG_PID, LOG_DAEMON);
48
49         libtirpc_debug_level = level;
50         LIBTIRPC_DEBUG(1, ("libtirpc: debug level %d", libtirpc_debug_level));
51 }
52
53 void
54 libtirpc_log_dbg(char *fmt, ...)
55 {
56         va_list args;
57
58         va_start(args, fmt);
59         if (log_stderr) {
60                 vfprintf(stderr, fmt, args);
61                 fprintf(stderr, "\n");
62         } else
63                 vsyslog(LOG_NOTICE, fmt, args);
64         va_end(args);
65 }