diff options
author | sr55 <[email protected]> | 2019-12-28 13:50:55 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2019-12-28 13:50:55 +0000 |
commit | 741d9e082ba0f40c4571f48b54eb237048df8c2a (patch) | |
tree | b851dad93de1cfae8aa127ef885cf8a3a347c425 /win/CS/HandBrakeWPF/Startup/AppBootstrapper.cs | |
parent | 0ca1b03b3d3801b3db8661fd26e461ad2ca2e05f (diff) |
WinGui: First step in a long overdue cleanup of the logging code. Stripped out a bunch of unneeded code
Diffstat (limited to 'win/CS/HandBrakeWPF/Startup/AppBootstrapper.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/Startup/AppBootstrapper.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Startup/AppBootstrapper.cs b/win/CS/HandBrakeWPF/Startup/AppBootstrapper.cs index bc4613278..67c7bd261 100644 --- a/win/CS/HandBrakeWPF/Startup/AppBootstrapper.cs +++ b/win/CS/HandBrakeWPF/Startup/AppBootstrapper.cs @@ -19,6 +19,7 @@ namespace HandBrakeWPF.Startup using HandBrakeWPF.Services;
using HandBrakeWPF.Services.Interfaces;
+ using HandBrakeWPF.Services.Logging;
using HandBrakeWPF.Services.Presets;
using HandBrakeWPF.Services.Presets.Interfaces;
using HandBrakeWPF.Services.Queue;
@@ -64,6 +65,7 @@ namespace HandBrakeWPF.Startup this.container.Singleton<IUserSettingService, UserSettingService>();
this.container.Singleton<IPresetService, PresetService>();
this.container.Singleton<IQueueService, QueueService>();
+ this.container.Singleton<HandBrakeWPF.Services.Logging.Interfaces.ILog, LogService>();
// Commands
|