From a6005bdabaf628515b321a8d03fac649af0820f2 Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Sat, 7 Oct 2023 12:13:33 +0200 Subject: [PATCH] Tweak log level --- Deliveroo/Deliveroo.csproj | 2 +- Deliveroo/DeliverooPlugin.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Deliveroo/Deliveroo.csproj b/Deliveroo/Deliveroo.csproj index 36dddca..24fdcd1 100644 --- a/Deliveroo/Deliveroo.csproj +++ b/Deliveroo/Deliveroo.csproj @@ -1,7 +1,7 @@ net7.0-windows - 2.1 + 2.2 11.0 enable true diff --git a/Deliveroo/DeliverooPlugin.cs b/Deliveroo/DeliverooPlugin.cs index a0ce9e5..86236e3 100644 --- a/Deliveroo/DeliverooPlugin.cs +++ b/Deliveroo/DeliverooPlugin.cs @@ -102,7 +102,7 @@ public sealed partial class DeliverooPlugin : IDalamudPlugin { if (_currentStageInternal != value) { - _pluginLog.Information($"Changing stage from {_currentStageInternal} to {value}"); + _pluginLog.Verbose($"Changing stage from {_currentStageInternal} to {value}"); _currentStageInternal = value; } }