From 439b9455de8a79b10a7c8a95fcc7e01b236a86b0 Mon Sep 17 00:00:00 2001 From: Andrey Boronnikov Date: Fri, 13 Feb 2026 12:05:25 +0300 Subject: [PATCH] Fix WindowService close log message --- .../Packages/Windows/Services/WindowService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RedCatEngineUnityProject/Packages/Windows/Services/WindowService.cs b/RedCatEngineUnityProject/Packages/Windows/Services/WindowService.cs index fa38867..8de9b56 100644 --- a/RedCatEngineUnityProject/Packages/Windows/Services/WindowService.cs +++ b/RedCatEngineUnityProject/Packages/Windows/Services/WindowService.cs @@ -62,7 +62,7 @@ public void Close(WindowConfig windowConfig) if (!_windowInfos.TryGetValue(windowConfig, out var info)) return; - _logService.LogFormat("Open window {0}", windowConfig); + _logService.LogFormat("Close window {0}", windowConfig.name); info.Close(); } @@ -200,4 +200,4 @@ private IWindowData GetWindowData(WindowConfig windowConfig, object[] context) return windowData; } } -} \ No newline at end of file +}