From 767cdc1f6f6a63ce997fc9476911e2c361f9d402 Mon Sep 17 00:00:00 2001 From: LukePulverenti Date: Wed, 20 Feb 2013 20:33:05 -0500 Subject: Pushing missing changes --- MediaBrowser.Common/Logging/LogManager.cs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 MediaBrowser.Common/Logging/LogManager.cs (limited to 'MediaBrowser.Common/Logging/LogManager.cs') diff --git a/MediaBrowser.Common/Logging/LogManager.cs b/MediaBrowser.Common/Logging/LogManager.cs new file mode 100644 index 000000000..825f04440 --- /dev/null +++ b/MediaBrowser.Common/Logging/LogManager.cs @@ -0,0 +1,20 @@ +using MediaBrowser.Model.Logging; + +namespace MediaBrowser.Common.Logging +{ + /// + /// Class LogManager + /// + public static class LogManager + { + /// + /// Gets the logger. + /// + /// The name. + /// ILogger. + public static ILogger GetLogger(string name) + { + return new NLogger(name); + } + } +} -- cgit v1.2.3