Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
TimedRotatingFileHandler(filename, when='W', interval=0, backupCount=0)

Produces:

ValueError: Unable to configure handler 'fichierSemaineStandard': You must specify a day for weekly rollover from 0 to 6 (0 is Monday): W

But the python documentation tells

value: 'W', type of interval: Week day (0=Monday)

So what's wrong?

share|improve this question

1 Answer

up vote 3 down vote accepted

It seems that this section of documentation is not clear about this. After having a peek in the code, to make the week rotation work, the 'W' argument is not sufficient. The weekday number must be placed just after the letter W:

TimedRotatingFileHandler(filename, when='W0', backupCount=0)

Note that the "interval" argument is useless.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.