I've just started playing around with log4net, but I cannot seem to find to get the FileAppender to prepend data to the file, instead of appending it. So, for example what I'd like:
[5:45] WARN newest log entry
[5:40] ERROR older log entry
[3:20] FATAL oldest log entry
Instead of the default appending behavior which results in the reverse
[3:20] FATAL oldest log entry
[5:40] ERROR older log entry
[5:45] WARN newest log entry
I've looked over the documentation for each Appender on the log4net site and found nothing. I was able to find plenty of answers for simply prepending data to a file programmatically, but nothing for log4net. Is it not possible?
Alternatively, I considered simply just scrolling the file to the bottom when the user tells the application to launch the log file, but how to do that varies based on which editor gets launched, so I'm out of ideas.