Questions tagged [consoleappender]
16 questions
0
votes
3 answers
log4net configuration for a given class not working
namespace Com.Foo
{
public class Bar
{
private static readonly ILog log = LogManager.GetLogger(typeof(Bar));
public void DoIt()
{
log.Info("Did it again!");
}
}
}
class Program
{
privateā¦

dotnet-practitioner
- 13,968
- 36
- 127
- 200