79803883

Date: 2025-10-29 14:12:05
Score: 1.5
Natty:
Report link

Writing to the log file from multiple processes will work fine, until the maximum log file size is reached and the RotatingFileHandler attempts to rotate the log file. Rotating the log file is done by renaming the log file (appending .1 to the file name). This will not be possible because the file will be in use (locked) by other processes.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Martin Watts