From 6f99cfe48c288002cbdaebab8f29e585230faa0a Mon Sep 17 00:00:00 2001 From: goat Date: Sat, 30 Sep 2023 01:17:27 +0200 Subject: [PATCH] fix: ScopedPluginLogService should be internal --- Dalamud/Logging/ScopedPluginLogService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Logging/ScopedPluginLogService.cs b/Dalamud/Logging/ScopedPluginLogService.cs index ca96fa64a..924b4885d 100644 --- a/Dalamud/Logging/ScopedPluginLogService.cs +++ b/Dalamud/Logging/ScopedPluginLogService.cs @@ -17,7 +17,7 @@ namespace Dalamud.Logging; #pragma warning disable SA1015 [ResolveVia] #pragma warning restore SA1015 -public class ScopedPluginLogService : IServiceType, IPluginLog, IDisposable +internal class ScopedPluginLogService : IServiceType, IPluginLog, IDisposable { private readonly LocalPlugin localPlugin;