ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/libio/misc/log.h
Revision: 70
Committed: Tue Oct 4 16:21:07 2005 UTC (20 years, 10 months ago) by adx
Content type: text/x-chdr
File size: 1747 byte(s)
Log Message:
- fixed errors on last commit
- moved rlimits.h to comm

File Contents

# User Rev Content
1 adx 70 /*
2     * ircd-hybrid: an advanced Internet Relay Chat Daemon(ircd).
3     * log.h: A header for the logger functions.
4     *
5     * Copyright (C) 2002 by the past and present ircd coders, and others.
6     *
7     * This program is free software; you can redistribute it and/or modify
8     * it under the terms of the GNU General Public License as published by
9     * the Free Software Foundation; either version 2 of the License, or
10     * (at your option) any later version.
11     *
12     * This program is distributed in the hope that it will be useful,
13     * but WITHOUT ANY WARRANTY; without even the implied warranty of
14     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15     * GNU General Public License for more details.
16     *
17     * You should have received a copy of the GNU General Public License
18     * along with this program; if not, write to the Free Software
19     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20     * USA
21     *
22     * $Id: s_log.h 33 2005-10-02 20:50:00Z knight $
23     */
24    
25     #define L_CRIT 0
26     #define L_ERROR 1
27     #define L_WARN 2
28     #define L_NOTICE 3
29     #define L_TRACE 4
30     #define L_INFO 5
31     #define L_DEBUG 6
32    
33     #ifndef SYSLOG_USERS
34     extern void *user_log_fb;
35     #endif
36    
37     extern void init_log(const char *);
38     extern void reopen_log(const char *);
39     extern void set_log_level(const int);
40     extern int get_log_level(void);
41     #ifdef __GNUC__
42     extern void ilog(const int, const char *, ...)
43     __attribute__((format(printf, 2, 3)));
44     #else
45     extern void ilog(const int, const char *, ...);
46     #endif
47     extern const char *get_log_level_as_string(int);
48    
49     enum {
50     LOG_OPER_TYPE,
51     LOG_FAILED_OPER_TYPE,
52     LOG_KLINE_TYPE,
53     LOG_RKLINE_TYPE,
54     LOG_TEMP_KLINE_TYPE,
55     LOG_DLINE_TYPE,
56     LOG_TEMP_DLINE_TYPE,
57     LOG_GLINE_TYPE,
58     LOG_KILL_TYPE,
59     LOG_OPERSPY_TYPE,
60     LOG_IOERR_TYPE
61     };

Properties

Name Value
svn:eol-style native
svn:keywords "Id Revision"