I am creating
my own appender, in a project that uses the log4net dll.
the problem is, I
cannot get the xml config file to use this new appender.
Example:
before,
I would say somthing like this:
<
appender name="ADONetAppender" type="log4net.Appender.ADONetAppender">but now, I try to say:
<appender name="ADONetAppender" type="log4net.ActiveSentryADONetAppender">
This new appender is not even getting called, the
logger just plain does'nt do anything when it tries to use this new
Appender.
How do I make my xml reconize this new class I
have created?
