XivCommon/XivCommon/Logger.cs

8 lines
145 B
C#
Raw Normal View History

2023-10-03 06:25:45 +00:00
using Dalamud.Plugin.Services;
2021-04-29 03:57:29 +00:00
2023-10-03 06:25:45 +00:00
namespace XivCommon;
2021-04-29 03:57:29 +00:00
2023-10-03 06:25:45 +00:00
internal static class Logger {
internal static IPluginLog Log { get; set; } = null!;
2021-04-29 03:57:29 +00:00
}