You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently fast_log will open file with read + write, and seek to the file end, and write logs to file.
When multiple process use same log file, it will result in repeated overwriting same position.
Opening the file using append can solve this problem.
But additional code may be needed to determine when to roll the file and synchronize this state between multiple processes.
The text was updated successfully, but these errors were encountered:
Currently fast_log will open file with read + write, and seek to the file end, and write logs to file.
When multiple process use same log file, it will result in repeated overwriting same position.
Opening the file using append can solve this problem.
But additional code may be needed to determine when to roll the file and synchronize this state between multiple processes.
The text was updated successfully, but these errors were encountered: