fix systemd unit install path
[external/acpid.git] / log.c
1 /*
2  *  log.c - ACPI daemon logging
3  *
4  *  Portions Copyright (C) 2000 Andrew Henroid
5  *  Portions Copyright (C) 2001 Sun Microsystems
6  *  Portions Copyright (C) 2004 Tim Hockin (thockin@hockin.org)
7  *
8  *  This program is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License as published by
10  *  the Free Software Foundation; either version 2 of the License, or
11  *  (at your option) any later version.
12  *
13  *  This program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program; if not, write to the Free Software
20  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 #include <stdio.h>
24 #include <syslog.h>
25 #include <stdarg.h>
26
27 #include "log.h"
28
29 int log_debug_to_stderr = 0;
30
31 int
32 #ifdef __GNUC__
33 __attribute__((format(printf, 2, 3)))
34 #endif
35 acpid_log(int level, const char *fmt, ...)
36 {
37         va_list args;
38
39         if (level == LOG_DEBUG) {
40                 /* if "-d" has been specified */
41                 if (log_debug_to_stderr) {
42                         /* send debug output to stderr */
43                         va_start(args, fmt);
44                         vfprintf(stderr, fmt, args);
45                         va_end(args);
46
47             fprintf(stderr, "\n");
48                 }
49         } else {
50                 va_start(args, fmt);
51                 vsyslog(level, fmt, args);
52                 va_end(args);
53         }
54
55         return 0;
56 }