I'm using NLog as my logger, however I cant seem to find an Ilogger
interface in NLog namespaces unlike log4net's Ilogger
interfac开发者_JAVA技巧e, do I have to create my own wrapper?
You need to create a wrapping interface only if you expect to use a different logging technology in the future or if you need to mock the logger for unit testing; if not, the dependency injector will probably let you register concrete instances of the logging class you are using.
精彩评论