mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-01 05:13:40 +01:00
Add IPluginLog#Info
- Shorthand for information log lines, because typing out `Information` is too much.
This commit is contained in:
parent
3618a510d0
commit
d29422bc50
2 changed files with 15 additions and 3 deletions
|
|
@ -76,6 +76,12 @@ public interface IPluginLog
|
|||
/// <inheritdoc cref="Information(string,object[])"/>
|
||||
/// <param name="exception">An (optional) exception that should be recorded alongside this event.</param>
|
||||
void Information(Exception? exception, string messageTemplate, params object[] values);
|
||||
|
||||
/// <inheritdoc cref="Information(string,object[])"/>
|
||||
void Info(string messageTemplate, params object[] values);
|
||||
|
||||
/// <inheritdoc cref="Information(Exception?,string,object[])"/>
|
||||
void Info(Exception? exception, string messageTemplate, params object[] values);
|
||||
|
||||
/// <summary>
|
||||
/// Log a <see cref="LogEventLevel.Debug" /> message to the Dalamud log for this plugin. This log level should be
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue