21 Jan
2019
21 Jan
'19
8:51 a.m.
I'm assuming you're not using async logging
I am using synchronous so I can keep the order of log messages for debugging.
To avoid buffering in the file stream you can enable auto flush in the sink backend.
Actually I like controlling the auto flush manually as I am running on the embedded system, I can prolong the flash storage lifetime. Stability is the absolute goal. Thank you very much Andrey.