diff options
Diffstat (limited to 'MediaBrowser.Common/Logging/LogManager.cs')
| -rw-r--r-- | MediaBrowser.Common/Logging/LogManager.cs | 20 |
1 files changed, 20 insertions, 0 deletions
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 +{ + /// <summary> + /// Class LogManager + /// </summary> + public static class LogManager + { + /// <summary> + /// Gets the logger. + /// </summary> + /// <param name="name">The name.</param> + /// <returns>ILogger.</returns> + public static ILogger GetLogger(string name) + { + return new NLogger(name); + } + } +} |
