what should be the better way to use Python twistedmatrix log file, and customize it so that it can be : - rotating on a weekly basis (sunday) - with a custom naming convention (replace the current date _underscore glued that can be seen in the DailyLogFile with something like myfile.yyyymmdd.log or so)
shoud it be by writing my own/subclassing in the same way as class DailyLogFile(BaseLogFile): ?
i have seen that some consider logrotate from linux command, but i wanted to go with a python twistedmatrix solution. (but maybe are there some trouble that i dot have guessed ?)
best regards