ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/include/log.h
Revision: 1155
Committed: Tue Aug 9 20:27:45 2011 UTC (12 years, 7 months ago) by michael
Content type: text/x-chdr
Original Path: ircd-hybrid/include/s_log.h
File size: 1759 byte(s)
Log Message:
- recreate "trunk"

File Contents

# User Rev Content
1 adx 30 /*
2     * ircd-hybrid: an advanced Internet Relay Chat Daemon(ircd).
3     * s_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 knight 31 * $Id$
23 adx 30 */
24    
25     #ifndef INCLUDED_s_log_h
26     #define INCLUDED_s_log_h
27    
28     struct Client;
29    
30     #define L_CRIT 0
31     #define L_ERROR 1
32     #define L_WARN 2
33     #define L_NOTICE 3
34     #define L_TRACE 4
35     #define L_INFO 5
36     #define L_DEBUG 6
37    
38     extern void init_log(const char *);
39     extern void reopen_log(const char *);
40     extern void set_log_level(const int);
41     extern int get_log_level(void);
42     extern void ilog(const int, const char *, ...);
43     extern const char *get_log_level_as_string(int);
44     extern void log_user_exit(struct Client *);
45     extern void log_oper_action(int type, const struct Client *, const char *, ...);
46    
47     enum {
48     LOG_OPER_TYPE,
49     LOG_FAILED_OPER_TYPE,
50     LOG_KLINE_TYPE,
51     LOG_RKLINE_TYPE,
52     LOG_TEMP_KLINE_TYPE,
53     LOG_DLINE_TYPE,
54     LOG_TEMP_DLINE_TYPE,
55     LOG_GLINE_TYPE,
56     LOG_KILL_TYPE,
57     LOG_OPERSPY_TYPE,
58     LOG_IOERR_TYPE
59     };
60    
61     #endif /* INCLUDED_s_log_h */

Properties

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