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.