chiark / gitweb /
[PATCH] added stupid test script for debugging.
[elogind.git] / logging.c
1 /*
2  * logging.c
3  *
4  * Simple logging functions that can be compiled away into nothing.
5  *
6  * Copyright (C) 2001-2003 Greg Kroah-Hartman <greg@kroah.com>
7  *
8  *      This program is free software; you can redistribute it and/or modify it
9  *      under the terms of the GNU General Public License as published by the
10  *      Free Software Foundation, version 2 of the License.
11  * 
12  *      This program is distributed in the hope that it will be useful, but
13  *      WITHOUT ANY WARRANTY; without even the implied warranty of
14  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  *      General Public License for more details.
16  * 
17  *      You should have received a copy of the GNU General Public License along
18  *      with this program; if not, write to the Free Software Foundation, Inc.,
19  *      675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  */
22
23 #include <stdarg.h>
24 #include <syslog.h>
25 #include "udev.h"
26
27 #ifdef DEBUG
28
29 static int logging_init = 0;
30
31 static void init_logging (void)
32 {
33         openlog ("udev", 0, LOG_DAEMON);
34         logging_init = 1;
35 }
36
37 /**
38  * log_message - sends a message to the logging facility
39  */
40 int log_message (int level, const char *format, ...)
41 {
42         va_list args;
43
44         if (!logging_init)
45                 init_logging();
46         va_start (args, format);
47         vsyslog (level, format, args);
48         va_end (args);
49         return 1;
50 }
51
52 #endif