diff --git a/Dalamud/Plugin/DalamudPluginInterface.cs b/Dalamud/Plugin/DalamudPluginInterface.cs index 9ab55d24c..8814e494a 100644 --- a/Dalamud/Plugin/DalamudPluginInterface.cs +++ b/Dalamud/Plugin/DalamudPluginInterface.cs @@ -347,35 +347,6 @@ namespace Dalamud.Plugin #endregion - #region Logging - - /// - /// Log a templated message to the in-game debug log. - /// - /// The message template. - /// Values to log. - [Obsolete("Use PluginLog")] - public void Log(string messageTemplate, params object[] values) => Serilog.Log.Information(messageTemplate, values); - - /// - /// Log a templated error message to the in-game debug log. - /// - /// The message template. - /// Values to log. - [Obsolete("Use PluginLog")] - public void LogError(string messageTemplate, params object[] values) => Serilog.Log.Error(messageTemplate, values); - - /// - /// Log a templated error message to the in-game debug log. - /// - /// The exception that caused the error. - /// The message template. - /// Values to log. - [Obsolete("Use PluginLog")] - public void LogError(Exception exception, string messageTemplate, params object[] values) => Serilog.Log.Error(exception, messageTemplate, values); - - #endregion - /// /// Unregister your plugin and dispose all references. You have to call this when your IDalamudPlugin is disposed. ///