我正在使用 log4net 库v 2.0.2进行日志记录,.Net 4,服务器服务。 此服务器具有不间断运行并将操作事件写入滚动日志文件。
有时候,我遇到了服务器日志文件卡住时间戳记录的问题。 记录器将写入消息保留到文件中,但消息时间戳卡在同一个日期时间。回滚时日期时间毫秒不断增加。 无法重现我的环境中的错误,我没有在log4net forums
上找到此类错误附加示例:
2015-12-18 00:18:08,835 [59] INFO ServiceA - info message 2015-12-18 00:18:08,897 [50] WARN ServiceB - warning message 2015-12-18 00:18:08,032 [15] INFO ServiceA - another info message 2015-12-18 00:18:08,094 [27] ERROR ServiceC - some error occured 2015-12-18 00:18:08,148 [19] ERROR ServiceC - another error 2015-12-18 00:18:08,342 [6] WARN ServiceA - another warning message
有人遇到过这样的问题吗?
由于