summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Helpers/LogManager.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2018-05-08 21:31:26 +0100
committersr55 <[email protected]>2018-05-08 21:31:26 +0100
commita6f3cd670f492a3474bf4695f1a8a6302fc3ed56 (patch)
treef862920629c676c23d095da6e9cb2877bb1f413d /win/CS/HandBrakeWPF/Helpers/LogManager.cs
parent1a16ebead7e49a214276859f53ce18a0c844f102 (diff)
WinGui: Remove Logging abstraction from the Services library. Let the library consumers decide how to log instead utilising the log events instead.
Diffstat (limited to 'win/CS/HandBrakeWPF/Helpers/LogManager.cs')
-rw-r--r--win/CS/HandBrakeWPF/Helpers/LogManager.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/win/CS/HandBrakeWPF/Helpers/LogManager.cs b/win/CS/HandBrakeWPF/Helpers/LogManager.cs
index 2cd94a25d..ec1c11ffc 100644
--- a/win/CS/HandBrakeWPF/Helpers/LogManager.cs
+++ b/win/CS/HandBrakeWPF/Helpers/LogManager.cs
@@ -9,15 +9,15 @@
namespace HandBrakeWPF.Helpers
{
- using System;
using System.IO;
using HandBrake.ApplicationServices.Interop;
- using HandBrake.ApplicationServices.Services.Logging;
- using HandBrake.ApplicationServices.Services.Logging.Interfaces;
using HandBrakeWPF.Utilities;
+ using ILog = HandBrakeWPF.Services.Logging.Interfaces.ILog;
+ using LogService = HandBrakeWPF.Services.Logging.LogService;
+
/// <summary>
/// Tempory Class to Initialise the logging.
/// </summary>