Using the asynchronous logging API is very useful but can get confusing when a number of items are logged in quick succession. The API buffers the log entries as they occur but only writes them to the database after a short period. The result is that we will view the faster events in chronological order (latest on bottom) but slower events in reverse chronological order (latest on top)
Would it be pssible to buffer the events in REVERSE order so that the overall log is always shown in reverse chronological order (latest on top)