Should a logging framework be injected into classes that need them or should every class that needs it just know the framework and use it directly? I am using Log4Net and currently I am injecting a service that wraps that framework into the classes that need to be able to log, knowing logging is probably not going to change and that most pieces need it, is injecting the answer in this sense?
|
|
|
|
|
|
|
Injection is more flexible in the long run, since you can easily selectively inject into certain places and disable logging selectively, etc. |
||
|
|
|
|
If memory performance is not that much of an issue you might consider AOP, e.g. using PostSharp. That way your classes don't need to know the logger at all. You basically inject IL-code right into your assembly as a postbuild step. PostSharp uses attributes for marking methods, classes and even whole assemblies. There's even a plugin for using log4net for the logging concern. EDIT: I mentioned memory because with each attribute you create a new object for each join point. |
||
|
|
|
Even though you stated that logging isn't going to change, I suggest to abstract away from a specific logging framework. Injecting a logger instance however isn't needed in all cases. Take CommonLogging (see this Stackoverflow answer for a short description of what Common.Logging is) for instance: Your class talks directly to the factory (LoggerManager) but you are not bound to a specific logger implementation. |
||
|
|
|
|
I think there is nothing wrong with injecting it. They recommend using static variables merely for performance reasons, but I see little difference between this and injecting a logger at start up. |
||
|
|
|
|
If you are talking about dependency injection (say in the Spring.NET sense) then it doesn't much matter - though you don't get much value from multiple copies of logger instances. Typically, each logger instance returned by a framework with a specific class/name will be a singleton anyway, so the question is whether you want to clutter each instance with a logger reference, rather than a single static reference per class. If you are concerned about changing logger implementations, then log to an interface (CommonLogging, mentioned in another answer, does this, and supports both log4net and Enterprise Library implementations). If you are talking about injection using AOP, then I'm not sure that beyond a certain point, AOP injection is more flexible. You are pretty much limited to logging entry, exit and exceptions with method-level granularity.AOP Injection is more of a scatter-shot approach, even if you use AOP to selectively inject into parts of your code. Although logging is touted as a cross-cutting concern of the kind which which is ideal for AOP, I've never found AOP-based logging to be much use in practice (YMMV, of course). |
||
|
|
