Maximum Filesize of LogFileAppender in Log4Net

前端 未结 2 1805
伪装坚强ぢ
伪装坚强ぢ 2020-12-09 15:15

I am using Log4net for a while now and it\'s an amazing logging framework, especially when hooked into Castle.Windsor. However...

I usually use the rolling file app

2条回答
  •  庸人自扰
    2020-12-09 15:32

    The FileAppender class does not have the MaxFileSize/MaximumFileSize properties. You only get those if you use a RollingFileAppender. Here's an example that will limit your file to a fixed maximum size, with no backups (set maxSizeRollBackups to 0). Note that when the file reaches its max size, it truncates (basically deletes all existing logging and starts over):

    
        
        
        
        
        
        
        
            
        
    
    

提交回复
热议问题