Initial revision
[melted] / mlt / src / miracle / miracle_log.c
1 /*
2 * log.h -- logging facility implementation
3 * Copyright (C) 2002-2003 Ushodaya Enterprises Limited
4 * Author: Dan Dennedy <dan@dennedy.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 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 Foundation,
18 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
21 #ifdef HAVE_CONFIG_H
22 #include <config.h>
23 #endif
24
25 #include <stdarg.h>
26 #include <syslog.h>
27 #include <stdio.h>
28
29 #include "log.h"
30
31 static int log_output = log_stderr;
32 static int threshold = LOG_DEBUG;
33
34 void
35 dv1394d_log_init( enum log_output method, int new_threshold )
36 {
37 log_output = method;
38 threshold = new_threshold;
39 if (method == log_syslog)
40 openlog( "dv1394d", LOG_CONS, LOG_DAEMON );
41
42 }
43
44 void
45 dv1394d_log( int priority, char *format, ... )
46 {
47 va_list list;
48 va_start( list, format );
49 if ( LOG_PRI(priority) <= threshold )
50 {
51 if ( log_output == log_syslog )
52 {
53 vsyslog( priority, format, list );
54 }
55 else
56 {
57 char line[1024];
58 if ( snprintf( line, 1024, "(%d) %s\n", priority, format ) != 0 )
59 vfprintf( stderr, line, list );
60 }
61 }
62 va_end( list );
63 }