Earlier today I asked a question about configuring log4net from code and got an answer very quickly which allowed me to configure it to output to a text file. Since then my
Did you try changing the buffer size from 100 to 1?
appender.BufferSize = 100;
to
appender.BufferSize = 1;
Currently your file is waiting for a 100 messages before it outputs any.