From 34c05adeb13e4bf8d51d39064f476479735cc1fb Mon Sep 17 00:00:00 2001 From: KazWolfe Date: Sat, 23 Sep 2023 19:58:21 -0700 Subject: [PATCH] Remove IPluginLog#Logger for now (#1428) - Causes issues with mocking. --- Dalamud/Plugin/Services/IPluginLog.cs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/Dalamud/Plugin/Services/IPluginLog.cs b/Dalamud/Plugin/Services/IPluginLog.cs index d16e985af..aac321092 100644 --- a/Dalamud/Plugin/Services/IPluginLog.cs +++ b/Dalamud/Plugin/Services/IPluginLog.cs @@ -20,15 +20,6 @@ public interface IPluginLog /// LogEventLevel MinimumLogLevel { get; set; } - /// - /// Gets an instance of the Serilog for advanced use cases. The provided logger will handle - /// tagging all log messages with the appropriate context variables and properties. - /// - /// - /// Not currently part of public API - will be added after some formatter work has been completed. - /// - internal ILogger Logger { get; } - /// /// Log a message to the Dalamud log for this plugin. This log level should be /// used primarily for unrecoverable errors or critical faults in a plugin.