I trying to write custom appender for logging in NLog. I saw some examlpes for log4net where should write appender which is inherit from abstract class AppenderSkeleton. Can anyone name the analog class in NLog?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
NLog analog of log4net's appenders will be target. For creating your own target, you have to inherit from
Next step is adding assembly where your class is defined to NLog extensions:
And last step - registering your target (NLog will search in extensions for types market by
|
||||
|
|