125
|
1 /*
|
|
2 * trace.c : GeeXboX uShare log facility.
|
|
3 * Originally developped for the GeeXboX project.
|
|
4 * Copyright (C) 2005-2007 Alexis Saettler <asbin@asbin.org>
|
|
5 *
|
|
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 2 of the License, or
|
|
9 * (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 Library General Public License for more details.
|
|
15 *
|
|
16 * You should have received a copy of the GNU General Public License along
|
|
17 * with this program; if not, write to the Free Software Foundation,
|
|
18 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
19 */
|
|
20
|
|
21 #include <stdio.h>
|
|
22 #include <stdarg.h>
|
|
23 #include <syslog.h>
|
|
24 #include <stdbool.h>
|
|
25
|
|
26 #include "config.h"
|
|
27 #include "trace.h"
|
|
28 #include "ushare.h"
|
|
29
|
|
30 extern struct ushare_t *ut;
|
|
31
|
|
32 void
|
|
33 print_log (log_level level, const char *format, ...)
|
|
34 {
|
|
35 va_list va;
|
|
36 bool is_daemon = ut ? ut->daemon : false;
|
|
37 bool is_verbose = ut ? ut->verbose : false;
|
|
38
|
|
39 if (!format)
|
|
40 return;
|
|
41
|
|
42 if (!is_verbose && level >= ULOG_VERBOSE)
|
|
43 return;
|
|
44
|
|
45 va_start (va, format);
|
|
46 if (is_daemon)
|
|
47 {
|
|
48 int flags = LOG_DAEMON;
|
|
49 flags |= level == ULOG_ERROR ? LOG_ERR : LOG_NOTICE;
|
|
50 vsyslog (flags, format, va);
|
|
51 }
|
|
52 else
|
|
53 {
|
|
54 FILE *output = level == ULOG_ERROR ? stderr : stdout;
|
|
55 vfprintf (output, format, va);
|
|
56 }
|
|
57 va_end (va);
|
|
58 }
|
|
59
|
|
60 inline void
|
|
61 start_log (void)
|
|
62 {
|
|
63 openlog (PACKAGE_NAME, LOG_PID, LOG_DAEMON);
|
|
64 }
|