While using C# Common.Logging, the current logging set up is such that the _logger
is declared as below in the beginning of every class that the _logger
is used.
private static readonly ILog _logger = LogManager.GetCurrentClassLogger();
Is this the correct way to do it? Is there a better alternative?