| 1 |
/* |
| 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 |
* $Id: s_log.h,v 7.21 2005/09/05 18:49:43 db Exp $ |
| 23 |
*/ |
| 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 |
#ifdef __GNUC__ |
| 43 |
extern void ilog(const int, const char *, ...) __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 |
extern void log_user_exit(struct Client *); |
| 49 |
extern void log_oper_action(int type, const struct Client *, const char *, ...); |
| 50 |
|
| 51 |
enum { |
| 52 |
LOG_OPER_TYPE, |
| 53 |
LOG_FAILED_OPER_TYPE, |
| 54 |
LOG_KLINE_TYPE, |
| 55 |
LOG_RKLINE_TYPE, |
| 56 |
LOG_TEMP_KLINE_TYPE, |
| 57 |
LOG_DLINE_TYPE, |
| 58 |
LOG_TEMP_DLINE_TYPE, |
| 59 |
LOG_GLINE_TYPE, |
| 60 |
LOG_KILL_TYPE, |
| 61 |
LOG_OPERSPY_TYPE, |
| 62 |
LOG_IOERR_TYPE |
| 63 |
}; |
| 64 |
|
| 65 |
#endif /* INCLUDED_s_log_h */ |