Just started using log4net and trying to get my head around the config and logger hierarchy. Is this hierarchy based on namespaces or class and method/function hierarchy?
Lets say I have the following class structure...
public class MyClass
{
private static readonly ILog log = LogManager.GetLogger(typeof(MyClass));
public void Method1()
{
log4net.info("message");
}
public void Method2()
{
log4net.info("message");
}
}
Is it possible to setup in the config for the log4net.info in method1 to use one appender and the log4net.info in method 2 to use another appender, even if they are off the same type e.g. SmtpAppender. If so how would the config look. here is my first attempt at it.
<appender name="SMTP1" type="log4net.Appender.SMTPAppender">
</appender>
<appender name="SMTP2" type="log4net.Appender.SMTPAppender">
</appender>
<logger name="MyClass.Method1">
<level value="INFO" />
<appender-ref ref="SMTP1" />
</logger>
<logger name="MyClass.Method2">
<level value="INFO" />
<appender-ref ref="SMTP2" />
</logger>