in src/main/java/org/apache/sling/commons/logservice/internal/SLF4JSupport.java [185:192]
public synchronized void replay(final Enumeration<LogEntry> log) {
// the enumeration contains the most recent entries first
final List<LogEntry> entries = new ArrayList<>(Collections.list(log));
Collections.reverse(entries);
for (final LogEntry entry : entries) {
doLog(entry);
}
}