owntone-server/src/err.h

78 lines
2.8 KiB
C
Raw Normal View History

2003-10-13 11:03:14 -04:00
/*
* $Id$
* Error related routines
*
2003-12-29 15:41:08 -05:00
* Copyright (C) 2003 Ron Pedde (ron@pedde.com)
2003-10-13 11:03:14 -04:00
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/**
* \file err.h
*
* Header file for err.c
*/
2003-10-13 11:03:14 -04:00
#ifndef __ERR_H__
#define __ERR_H__
/** @anchor log_dests */
#define LOGDEST_STDERR 0 /**< Log to stderr */
2006-02-26 03:46:24 -05:00
#define LOGDEST_SYSLOG 1 /**< Log to syslog/eventviewer */
#define LOGDEST_LOGFILE 2 /**< Log to logfile */
/** @anchor log_levels */
2004-11-13 02:14:26 -05:00
#define E_SPAM 10 /**< Logorrhea! */
#define E_DBG 9 /**< Way too verbose */
#define E_INF 5 /**< Good info, not too much spam */
#define E_WARN 2 /**< Reasonably important, but not enough to log */
#define E_LOG 1 /**< Something that should go in a log file */
#define E_FATAL 0 /**< Log and force an exit */
/** @anchor log_categories */
2004-11-13 02:14:26 -05:00
#define L_CONF 0x00000001 /**< configuration - configfile.c */
#define L_WS 0x00000002 /**< webserver - webserver.c */
#define L_DB 0x00000004 /**< database - db-gdbm.c, db-memory.c */
#define L_SCAN 0x00000008 /**< scanner - mp3-scanner.c */
#define L_QRY 0x00000010 /**< query - query.c */
#define L_IND 0x00000020 /**< index - daap.c */
#define L_BROW 0x00000040 /**< browse - daap.c, query.c */
#define L_PL 0x00000080 /**< playlists - playlist.c, lexer.l, parser.y */
#define L_ART 0x00000100 /**< cover art - dynamic-art.c */
#define L_DAAP 0x00000200 /**< Generally daap related - main.c, daap.c, query.c */
#define L_MAIN 0x00000400 /**< setup, teardown, signals - main.c */
#define L_REND 0x00000800 /**< rendezvous -- rend-unix.c, rend-posix.c, etc */
2005-02-16 23:24:16 -05:00
#define L_XML 0x00002000 /**< xml - xml-rpc.c */
#define L_PARSE 0x00004000 /**< smart playlist parser */
2004-11-13 02:14:26 -05:00
#define L_MISC 0x80000000 /**< anything else */
2003-10-13 11:03:14 -04:00
2006-01-16 17:28:08 -05:00
#ifndef TRUE
# define TRUE 1
# define FALSE 0
#endif
2004-11-13 03:05:27 -05:00
extern void err_log(int level, unsigned int cat, char *fmt, ...);
2006-02-26 03:46:24 -05:00
extern void err_setdest(char *cvalue, int destination);
extern void err_setlevel(int level);
extern int err_getlevel(void);
2004-11-13 03:05:27 -05:00
extern int err_setdebugmask(char *list);
/**
* Print a debugging or log message
*/
2003-11-23 01:10:25 -05:00
2006-02-26 03:46:24 -05:00
#define DPRINTF err_log
2003-11-23 01:10:25 -05:00
2003-10-13 11:03:14 -04:00
#endif /* __ERR_H__ */