mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
Remove PluginInterface.LogX methods
This commit is contained in:
parent
8fd119dde8
commit
f695aee954
1 changed files with 0 additions and 29 deletions
|
|
@ -347,35 +347,6 @@ namespace Dalamud.Plugin
|
|||
|
||||
#endregion
|
||||
|
||||
#region Logging
|
||||
|
||||
/// <summary>
|
||||
/// Log a templated message to the in-game debug log.
|
||||
/// </summary>
|
||||
/// <param name="messageTemplate">The message template.</param>
|
||||
/// <param name="values">Values to log.</param>
|
||||
[Obsolete("Use PluginLog")]
|
||||
public void Log(string messageTemplate, params object[] values) => Serilog.Log.Information(messageTemplate, values);
|
||||
|
||||
/// <summary>
|
||||
/// Log a templated error message to the in-game debug log.
|
||||
/// </summary>
|
||||
/// <param name="messageTemplate">The message template.</param>
|
||||
/// <param name="values">Values to log.</param>
|
||||
[Obsolete("Use PluginLog")]
|
||||
public void LogError(string messageTemplate, params object[] values) => Serilog.Log.Error(messageTemplate, values);
|
||||
|
||||
/// <summary>
|
||||
/// Log a templated error message to the in-game debug log.
|
||||
/// </summary>
|
||||
/// <param name="exception">The exception that caused the error.</param>
|
||||
/// <param name="messageTemplate">The message template.</param>
|
||||
/// <param name="values">Values to log.</param>
|
||||
[Obsolete("Use PluginLog")]
|
||||
public void LogError(Exception exception, string messageTemplate, params object[] values) => Serilog.Log.Error(exception, messageTemplate, values);
|
||||
|
||||
#endregion
|
||||
|
||||
/// <summary>
|
||||
/// Unregister your plugin and dispose all references. You have to call this when your IDalamudPlugin is disposed.
|
||||
/// </summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue