Expand PMF_FN_* macros.
[netbsd-mini2440.git] / usr.sbin / sdpd / log.c
blobcf3adf2a89a6404fb11ba8a6c4c61ad3282604ea
1 /* $NetBSD: log.c,v 1.1 2006/06/19 15:44:56 gdamore Exp $ */
3 /*-
4 * Copyright (c) 2004 Maksim Yevmenkin <m_evmenkin@yahoo.com>
5 * All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
28 * $FreeBSD: src/usr.sbin/bluetooth/sdpd/log.c,v 1.1 2004/01/20 20:48:26 emax Exp $
31 #include <sys/cdefs.h>
32 __RCSID("$NetBSD: log.c,v 1.1 2006/06/19 15:44:56 gdamore Exp $");
34 #include <sys/types.h>
35 #include <stdarg.h>
36 #include <syslog.h>
38 #include "sdpd.h"
40 void
41 log_open(char const *prog, bool log2stderr)
43 openlog(prog, LOG_PID|LOG_NDELAY|(log2stderr? LOG_PERROR:0), LOG_USER);
46 void
47 log_close(void)
49 closelog();
52 void
53 log_emerg(char const *message, ...)
55 va_list ap;
57 va_start(ap, message);
58 vsyslog(LOG_EMERG, message, ap);
59 va_end(ap);
62 void
63 log_alert(char const *message, ...)
65 va_list ap;
67 va_start(ap, message);
68 vsyslog(LOG_ALERT, message, ap);
69 va_end(ap);
72 void
73 log_crit(char const *message, ...)
75 va_list ap;
77 va_start(ap, message);
78 vsyslog(LOG_CRIT, message, ap);
79 va_end(ap);
82 void
83 log_err(char const *message, ...)
85 va_list ap;
87 va_start(ap, message);
88 vsyslog(LOG_ERR, message, ap);
89 va_end(ap);
92 void
93 log_warning(char const *message, ...)
95 va_list ap;
97 va_start(ap, message);
98 vsyslog(LOG_WARNING, message, ap);
99 va_end(ap);
102 void
103 log_notice(char const *message, ...)
105 va_list ap;
107 va_start(ap, message);
108 vsyslog(LOG_NOTICE, message, ap);
109 va_end(ap);
112 void
113 log_info(char const *message, ...)
115 va_list ap;
117 va_start(ap, message);
118 vsyslog(LOG_INFO, message, ap);
119 va_end(ap);
122 void
123 log_debug(char const *message, ...)
125 va_list ap;
127 va_start(ap, message);
128 vsyslog(LOG_DEBUG, message, ap);
129 va_end(ap);