You need to synchronise when writing to same file from many processes. Among options:
* 1) lock a mutex; open file; append message; close file; unlock mutex
* 2) each process writes to pipe and a dedicated process reads from the pipe and writes
to the file
---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/681#issuecomment-227809239