Hello there, please forgive me if this is a newb question
We have got unreal ircd installed and working great, but to our supprise
we found that it is logging all server activity in ircd.log
We would prefer if we could turn logging off, is there a way to turn it off?
There dosnt seem to be an option for logging in unrealircd.conf
Thanks in advance
BurntToast
ircd.log
-
burntToast
- Posts: 3
- Joined: Tue Aug 30, 2005 9:36 pm
Thanks
Hi
thanks for that
I set the max file size as 1 byte and only to log spamfilter
I changed the log block to
log "ircd.log" {
/* Delete the log file and start a new one when it reaches 2MB, leave this out to always use the
same log */
maxsize 1;
flags {
/*
oper;
kline;
connects;
server-connects;
kills;
errors;
sadmin-commands;
chg-commands;
oper-override;
*/
spamfilter;
};
};
thanks for your help
BurntToast
thanks for that
I set the max file size as 1 byte and only to log spamfilter
I changed the log block to
log "ircd.log" {
/* Delete the log file and start a new one when it reaches 2MB, leave this out to always use the
same log */
maxsize 1;
flags {
/*
oper;
kline;
connects;
server-connects;
kills;
errors;
sadmin-commands;
chg-commands;
oper-override;
*/
spamfilter;
};
};
thanks for your help
BurntToast
-
burntToast
- Posts: 3
- Joined: Tue Aug 30, 2005 9:36 pm
you are right! the last thing we want is problems later on!
I set the max file size to 1mb and logged errors only
log "ircd.log" {
/* Delete the log file and start a new one when it reaches 2MB, leave this out to always use the
same log */
maxsize 1048576;
flags {
/*
oper;
kline;
connects;
server-connects;
kills;
sadmin-commands;
chg-commands;
oper-override;
spamfilter;
*/
errors;
};
};
thanks
BurntToast
I set the max file size to 1mb and logged errors only
log "ircd.log" {
/* Delete the log file and start a new one when it reaches 2MB, leave this out to always use the
same log */
maxsize 1048576;
flags {
/*
oper;
kline;
connects;
server-connects;
kills;
sadmin-commands;
chg-commands;
oper-override;
spamfilter;
*/
errors;
};
};
thanks
BurntToast