Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想让 log4net 写入一个用于调试消息的文件,另一个用于所有其他消息,我想以编程方式设置这一切。我可以看到如何指定附加程序的下限但没有上限(即防止调试附加程序写入调试级别以上的消息)。
有没有办法做到这一点?
你可以这样做:
Hierarchy hierarchy = (Hierarchy)LogManager.GetRepository(); hierarchy.Root.AddAppender(appender);
其中 appender 的类型为 IAppender