-
I'd like to know if that behavior is documented somewhere. I've setup an It worked well until when I opened the target file Could this be related to the operating system file handle or the pointer that the application has in that file ? no error messages was seen in other general log file. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This is caused by the way Vim writes changes to the current file:
If you want to edit log files, you need to call |
Beta Was this translation helpful? Give feedback.
This is caused by the way Vim writes changes to the current file:
backupcopy
is set toyes
, Vim will edit the content of the current file. Logging should continue without problems.backupcopy
is set tono
, Vim will rename (and delete) the current file and create a new one in its place. The new file will have the same name, but a different inode number. Log4j will continue logging to the deleted file (the old inode).If you want to edit log …