2 * Copyright (c) 1995-2003, Index Data.
4 * Permission to use, copy, modify, distribute, and sell this software and
5 * its documentation, in whole or in part, for any purpose, is hereby granted,
8 * 1. This copyright and permission notice appear in all copies of the
9 * software and its documentation. Notices of copyright or attribution
10 * which appear at the beginning of any file must remain unchanged.
12 * 2. The name of Index Data or the individual authors may not be used to
13 * endorse or promote products derived from this software without specific
14 * prior written permission.
16 * THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTY OF ANY KIND,
17 * EXPRESS, IMPLIED, OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
18 * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
19 * IN NO EVENT SHALL INDEX DATA BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
20 * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES
21 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR
22 * NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
23 * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
26 * $Id: log.h,v 1.8 2003-01-06 08:20:27 adam Exp $
33 #include <yaz/yconfig.h>
34 #include <yaz/xmalloc.h>
38 #define LOG_FATAL 0x0001
39 #define LOG_DEBUG 0x0002
40 #define LOG_WARN 0x0004
41 #define LOG_LOG 0x0008
42 #define LOG_ERRNO 0x0010 /* append strerror to message */
43 #define LOG_FILE 0x0020
44 #define LOG_APP 0x0040 /* For application level events such as new-connection */
45 #define LOG_MALLOC 0x0080 /* debugging mallocs */
47 #define LOG_ALL 0xff7f
49 #define LOG_DEFAULT_LEVEL (LOG_FATAL | LOG_ERRNO | LOG_LOG | LOG_WARN)
53 YAZ_EXPORT void yaz_log_init(int level, const char *prefix, const char *name);
54 YAZ_EXPORT void yaz_log_init_file (const char *fname);
55 YAZ_EXPORT void yaz_log_init_level (int level);
56 YAZ_EXPORT void yaz_log_init_prefix (const char *prefix);
57 YAZ_EXPORT void yaz_log_init_prefix2 (const char *prefix);
59 YAZ_EXPORT void yaz_log(int level, const char *fmt, ...)
61 __attribute__ ((format (printf, 2, 3)))
64 YAZ_EXPORT int yaz_log_mask_str (const char *str);
65 YAZ_EXPORT int yaz_log_mask_str_x (const char *str, int level);
66 YAZ_EXPORT FILE *yaz_log_file(void);
68 YAZ_EXPORT void log_event_start (void (*func)(int level, const char *msg, void *info),
70 YAZ_EXPORT void log_event_end (void (*func)(int level, const char *msg, void *info),