diff options
| author | Luke <luke.pulverenti@gmail.com> | 2016-05-23 14:05:03 -0400 |
|---|---|---|
| committer | Luke <luke.pulverenti@gmail.com> | 2016-05-23 14:05:03 -0400 |
| commit | 5e289f37f87da449868ae8365034a72de4af46c1 (patch) | |
| tree | 21caa75e8bb2bca116a99403f8885bbecbb20365 /MediaBrowser.Server.Mac/Native/NativeApp.cs | |
| parent | 37442ce4fad68ec2c23a69bc40302fae482b4978 (diff) | |
Update NativeApp.cs
Diffstat (limited to 'MediaBrowser.Server.Mac/Native/NativeApp.cs')
| -rw-r--r-- | MediaBrowser.Server.Mac/Native/NativeApp.cs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Mac/Native/NativeApp.cs b/MediaBrowser.Server.Mac/Native/NativeApp.cs index 005fb09148..59fa92dd18 100644 --- a/MediaBrowser.Server.Mac/Native/NativeApp.cs +++ b/MediaBrowser.Server.Mac/Native/NativeApp.cs @@ -1,5 +1,6 @@ using System; using MediaBrowser.Server.Startup.Common; +using MediaBrowser.Model.Logging; namespace MediaBrowser.Server.Mac { @@ -8,7 +9,12 @@ namespace MediaBrowser.Server.Mac /// </summary> public class NativeApp : BaseMonoApp { - /// <summary> + public NativeApp(ILogger logger) + : base(logger) + { + } + + /// <summary> /// Shutdowns this instance. /// </summary> public override void Shutdown() |
