Suppress zero sized log file creation

LT1AB
piyushrpt 2020-05-31 13:28:24 -07:00
parent 579dfab302
commit 7db07f3768
1 changed files with 2 additions and 1 deletions

View File

@ -21,7 +21,8 @@ propagate=0
class=handlers.RotatingFileHandler class=handlers.RotatingFileHandler
formatter=simpleFormatter formatter=simpleFormatter
# Filename, file mode, maximum file size in bytes,number of backups to keep # Filename, file mode, maximum file size in bytes,number of backups to keep
args=('isce.log','a',1048576,5) # encoding, delay
args=('isce.log','a',1048576,5,None,True)
[handler_consoleHandler] [handler_consoleHandler]
class=StreamHandler class=StreamHandler