I\'m trying to test using a TimedRotatingFileHandler with a logging.config file, nothing that complicated but it should roll over every 10 seconds into a new log file.
H
args=('./logs/log.out', 'when=\'S\'', 'interval=10', 'backupCount=5')
Doesn't look right. Try this
args=('./logs/log.out', when='S', interval=10, backupCount=5)
Or possibly this
args=('./logs/log.out','S',10,5)