Alexander Smirnov added the comment:
the namer was implemented to add "*.log" extension, to avoid broken file
association problem.
```
log_handler.namer = lambda name: name.replace(".log", "") + ".log"
```
>implemented carefully enough
Could you p
New submission from Alexander Smirnov :
after adding namer callable (like it is described in
https://bugs.python.org/issue43344) to log handler configuration, it stopped
removing old files
log_filename = os.path.join(log_dir, "application.log")
l
Alexander Smirnov added the comment:
the problem with namer solution is that it will stop respecting backupCount
parameter
--
nosy: +alexander.smirnoff
___
Python tracker
<https://bugs.python.org/issue43