My app has custom server code in Java, and a custom event handler uses logging API (date-based log file policy).
Today I deployed the server code and I tested it:
- deleted the log file for the current date
- dispatched an event => the event handler was fired, so the log file was created anew.
Everything was ok, but after I repeated this procedure several times, the log file disappeared and it stopped being created.
It was finally created only after I deployed another version of server code. The file contained all the entries for the period of time when the log file wasn’t there.
So I am not sure whether this issue is connected with the File Service or the Logging API.