From 282b04f2fe39205664fbccc81aaab1048294811c Mon Sep 17 00:00:00 2001 From: sr55 Date: Sun, 29 Dec 2019 17:29:36 +0000 Subject: WinGui: Experimental Worker Process (Basic logging is now operational) + UI Infrastructure (currently hidden) needed for the feature. + More Refactoring. --- .../Services/Logging/Interfaces/ILog.cs | 21 ++++----------------- 1 file changed, 4 insertions(+), 17 deletions(-) (limited to 'win/CS/HandBrakeWPF/Services/Logging/Interfaces') diff --git a/win/CS/HandBrakeWPF/Services/Logging/Interfaces/ILog.cs b/win/CS/HandBrakeWPF/Services/Logging/Interfaces/ILog.cs index 07f3ea635..d82a1ed0d 100644 --- a/win/CS/HandBrakeWPF/Services/Logging/Interfaces/ILog.cs +++ b/win/CS/HandBrakeWPF/Services/Logging/Interfaces/ILog.cs @@ -12,15 +12,17 @@ namespace HandBrakeWPF.Services.Logging.Interfaces using System; using System.Collections.Generic; + using HandBrake.Worker.Logging.Interfaces; using HandBrake.Worker.Logging.Models; + using HandBrakeWPF.Services.Logging.Model; + using LogEventArgs = HandBrakeWPF.Services.Logging.EventArgs.LogEventArgs; - using LogMessage = HandBrakeWPF.Services.Logging.Model.LogMessage; /// /// The Log interface. /// - public interface ILog + public interface ILog : ILogHandler { /// /// The message logged. @@ -32,21 +34,6 @@ namespace HandBrakeWPF.Services.Logging.Interfaces /// event EventHandler LogReset; - /// - /// Gets the log messages. - /// - IEnumerable LogMessages { get; } - - /// - /// Gets the activity log. - /// - string ActivityLog { get; } - - /// - /// The reset. - /// - void Reset(); - /// /// Enable logging for this worker process. /// -- cgit v1.2.3