From 856f37230335f0fbead1bdd70db6c7466e71225b Mon Sep 17 00:00:00 2001 From: James Vega Date: Sun, 8 Mar 2009 00:08:59 -0500 Subject: [PATCH] ChannelLogger: Use a sane timestamp for filenameTimestamp Closes #2591305 Signed-off-by: James Vega --- 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 c06a05107..eae2ac7a4 100644 --- a/plugins/ChannelLogger/config.py +++ b/plugins/ChannelLogger/config.py @@ -62,7 +62,7 @@ conf.registerChannelValue(ChannelLogger, 'rotateLogs', timestamp for the log changes. The timestamp is set according to the 'filenameTimestamp' configuration variable.""")) conf.registerChannelValue(ChannelLogger, 'filenameTimestamp', - registry.String('%d-%a-%Y', """Determines how to represent the timestamp + registry.String('%Y-%m-%d', """Determines how to represent the timestamp used for the filename in rotated logs. When this timestamp changes, the old logfiles will be closed and a new one started. The format characters for the timestamp are in the time.strftime docs at python.org. In order