mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
Fix warning
This commit is contained in:
parent
3340bfd205
commit
defa49865c
1 changed files with 7 additions and 7 deletions
|
|
@ -43,13 +43,6 @@ public class ModuleLog
|
|||
]);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Helper method to create a new <see cref="ModuleLog"/> instance based on a type.
|
||||
/// </summary>
|
||||
/// <typeparam name="T">The class to create this ModuleLog for.</typeparam>
|
||||
/// <returns>Returns a ModuleLog with name set.</returns>
|
||||
internal static ModuleLog Create<T>() => new(typeof(T));
|
||||
|
||||
/// <summary>
|
||||
/// Log a templated verbose message to the in-game debug log.
|
||||
/// </summary>
|
||||
|
|
@ -183,4 +176,11 @@ public class ModuleLog
|
|||
messageTemplate: $"[{this.moduleName}] {messageTemplate}",
|
||||
values);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Helper method to create a new <see cref="ModuleLog"/> instance based on a type.
|
||||
/// </summary>
|
||||
/// <typeparam name="T">The class to create this ModuleLog for.</typeparam>
|
||||
/// <returns>Returns a ModuleLog with name set.</returns>
|
||||
internal static ModuleLog Create<T>() => new(typeof(T));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue