Disable log spam

This commit is contained in:
Haselnussbomber 2026-01-19 11:18:42 +01:00
parent 173d1b3f7b
commit f73012ab43
No known key found for this signature in database
GPG key ID: BB905BB49E7295D1

View file

@ -626,6 +626,8 @@ internal unsafe class UnlockState : IInternalDisposableService, IUnlockState
if (!this.IsLoaded) if (!this.IsLoaded)
return; return;
Log.Verbose("Checking for new unlocks...");
this.UpdateUnlocksForSheet<ActionSheet>(); this.UpdateUnlocksForSheet<ActionSheet>();
this.UpdateUnlocksForSheet<AetherCurrent>(); this.UpdateUnlocksForSheet<AetherCurrent>();
this.UpdateUnlocksForSheet<AetherCurrentCompFlgSet>(); this.UpdateUnlocksForSheet<AetherCurrentCompFlgSet>();
@ -708,7 +710,7 @@ internal unsafe class UnlockState : IInternalDisposableService, IUnlockState
unlockedRowIds.Add(row.RowId); unlockedRowIds.Add(row.RowId);
Log.Verbose($"Unlock detected: {typeof(T).Name}#{row.RowId}"); // Log.Verbose($"Unlock detected: {typeof(T).Name}#{row.RowId}");
foreach (var action in Delegate.EnumerateInvocationList(this.Unlock)) foreach (var action in Delegate.EnumerateInvocationList(this.Unlock))
{ {