1
0
Fork 0

Tweak log level

master v2.2
Liza 2023-10-07 12:13:33 +02:00
parent 62bc3fe03c
commit a6005bdaba
Signed by: liza
GPG Key ID: 7199F8D727D55F67
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0-windows</TargetFramework>
<Version>2.1</Version>
<Version>2.2</Version>
<LangVersion>11.0</LangVersion>
<Nullable>enable</Nullable>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>

View File

@ -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;
}
}