From b5fd00b416422f4e4d7474e46b5d83bd4d049587 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sat, 31 May 2014 18:28:26 +0300 Subject: [PATCH] ChannelLogger: set FlushImmediately to True. * This is default behaviour with ZNC and some other IRC related applications. * Users are often confused when the logs don't appear. * The logs will less likely get lost if they are written immediately. * Gribble is doing this too (but not by default). --- plugins/ChannelLogger/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/ChannelLogger/config.py b/plugins/ChannelLogger/config.py index 575ac8dd2..b7a1ce46c 100644 --- a/plugins/ChannelLogger/config.py +++ b/plugins/ChannelLogger/config.py @@ -45,7 +45,7 @@ ChannelLogger = conf.registerPlugin('ChannelLogger') conf.registerChannelValue(ChannelLogger, 'enable', registry.Boolean(True, _("""Determines whether logging is enabled."""))) conf.registerGlobalValue(ChannelLogger, 'flushImmediately', - registry.Boolean(False, _("""Determines whether channel logfiles will be + registry.Boolean(True, _("""Determines whether channel logfiles will be flushed anytime they're written to, rather than being buffered by the operating system."""))) conf.registerChannelValue(ChannelLogger, 'showJoinParts',