This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

Disable logging of channel stats

General support and discussion of Eggdrop bots.
Post Reply
User avatar
Iljan
Voice
Posts: 1
Joined: Tue Oct 02, 2012 10:35 am
Location: Netherlands

Disable logging of channel stats

Post by Iljan »

Hi, have been reading a lot of tutorials about the logging of eggdrop but i cant really find a solution to get rid of these (in my opinion) stupid log-lines...

Code: Select all

[16:40:04] @#dutch02 (+tn) : [m/2 o/1 h/0 v/0 n/1 b/0 e/- I/-]
[16:40:04] @#dutch03 (+tn) : [m/1 o/1 h/0 v/0 n/0 b/0 e/- I/-]
[16:40:04] @#dutch04 (+tn) : [m/1 o/1 h/0 v/0 n/0 b/0 e/- I/-]
[16:40:04] @#dutch05 (+tn) : [m/1 o/1 h/0 v/0 n/0 b/0 e/- I/-]
[16:40:04] @#dutch06 (+tn) : [m/2 o/1 h/0 v/0 n/1 b/0 e/- I/-]
[16:40:04] @#dutch07 (+tn) : [m/1 o/1 h/0 v/0 n/0 b/0 e/- I/-]
First i thought it was the "-statuslog" but that didn't do the trick:

Code: Select all

##### LOGGING #####
set max-logs 200
set max-logsize 0
set quick-logs 0
logfile mco * "logs/lotje"
#logfile jpk #lamest "logs/Lotje.log"
set log-time 1
set keep-all-logs 1
set logfile-suffix ".%d%b%Y.log"
set switch-logfiles-at 300
set quiet-save 1

set global-chanset {
        -autoop         -autovoice
        -bitch          -cycle
        +dontkickops    -dynamicbans
        -dynamicexempts -dynamicinvites
        -enforcebans    -greet
        -inactive       +nodesynch
        -protectfriends -protectops
        -revenge        -revengebot
        -secret         -seen
        -shared         -statuslog
        +userbans       +userexempts
        +userinvites
}
[quote]
Besides that, it writes out to log's every 5 minutes and not real-time. I like to tail my files in a shell window during testing. So i prefer to change this to real-time or every several seconds.

Hints or tips anyone? I would be very happy to see this solved.
w
willyw
Revered One
Posts: 1202
Joined: Thu Jan 15, 2009 12:55 am

Re: Disable logging of channel stats

Post by willyw »

[quote="Iljan"]Hi, have been reading a lot of tutorials about the logging of eggdrop but i cant really find a solution to get rid of these (in my opinion) stupid log-lines...

...

First i thought it was the "-statuslog" but that didn't do the trick:

Code: Select all

##### LOGGING #####
...

set quick-logs 0

...


        -shared         -statuslog

...


Besides that, it writes out to log's every 5 minutes and not real-time. I like to tail my files in a shell window during testing. So i prefer to change this to real-time or every several seconds.

[/quote]

In partyline, do:   .chaninfo #channel
and check statuslog setting there. 
Use .chanset to change it, if need be.

Change:
set quick-logs 0 
to
set quick-logs 1

reference:
http://eggwiki.org/Eggdrop.conf
and search for both 
set quick-logs
and
statuslog

I hope this helps.
Post Reply