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
1
2