From d110a5ec105a29d0299715fc39866610d55a6f05 Mon Sep 17 00:00:00 2001 From: Cordelia Mist Date: Mon, 29 Dec 2025 18:04:10 -0800 Subject: [PATCH] Remove log message. --- Penumbra/Api/Api/CollectionApi.cs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Penumbra/Api/Api/CollectionApi.cs b/Penumbra/Api/Api/CollectionApi.cs index a95e2124..32a6f205 100644 --- a/Penumbra/Api/Api/CollectionApi.cs +++ b/Penumbra/Api/Api/CollectionApi.cs @@ -219,8 +219,5 @@ public class CollectionApi : IPenumbraApiCollection, IApiService, IDisposable } private void OnResolvedFileChange(ModCollection collection, ResolvedFileChange type, Utf8GamePath gamePath, FullPath newPath, FullPath oldPath, IMod? mod) - { - // Penumbra.Log.Debug($"[API]{{{collection.Identity.Name}}} | {{{mod}}} | {type} Redirect of [ {gamePath} ] ([ {oldPath} ] -> [ {newPath} ])"); - ResolvedFileChanged?.Invoke(type, collection.Identity.Id, mod?.Name ?? string.Empty, gamePath.ToString(), oldPath.ToString(), newPath.ToString()); - } + => ResolvedFileChanged?.Invoke(type, collection.Identity.Id, mod?.Name ?? string.Empty, gamePath.ToString(), oldPath.ToString(), newPath.ToString()); }