diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2021-07-28 10:46:52 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-28 10:46:52 (GMT) |
commit | 174fbd85f60d7877d3a4f58214a852209f8dfbea (patch) | |
tree | 43cf723b3d9fc3abc775d5f0bdeb189cc9f16946 /Doc/howto | |
parent | ee03bad25e83b00ba5fc2a0265b48c6286e6b3f7 (diff) | |
download | cpython-174fbd85f60d7877d3a4f58214a852209f8dfbea.zip cpython-174fbd85f60d7877d3a4f58214a852209f8dfbea.tar.gz cpython-174fbd85f60d7877d3a4f58214a852209f8dfbea.tar.bz2 |
bpo-44399: Document another example of unexpected behavior. (GH-27407)
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/logging-cookbook.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst index 2ab8c52..5a8d92a 100644 --- a/Doc/howto/logging-cookbook.rst +++ b/Doc/howto/logging-cookbook.rst @@ -3022,7 +3022,9 @@ lead to a number of problems in practice: * An attempt to delete a file (e.g. during file rotation) silently fails, because there is another reference pointing to it. This can lead to confusion and wasted debugging time - log entries end up in unexpected places, or are - lost altogether. + lost altogether. Or a file that was supposed to be moved remains in place, + and grows in size unexpectedly despite size-based rotation being supposedly + in place. Use the techniques outlined in :ref:`multiple-processes` to circumvent such issues. |