From ce66bc374f133c7ecad077e463290f321ded47f6 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Wed, 22 Jan 2025 15:56:38 +0900 Subject: [PATCH] Fix `SetupLogging` not being called in game test scenario --- osu.Framework/Testing/TestScene.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/osu.Framework/Testing/TestScene.cs b/osu.Framework/Testing/TestScene.cs index 545f59161..307ffaa82 100644 --- a/osu.Framework/Testing/TestScene.cs +++ b/osu.Framework/Testing/TestScene.cs @@ -90,6 +90,7 @@ namespace osu.Framework.Testing exitNestedGame(); nestedGame = game; + nestedGame.SetupLogging(host.Storage, host.CacheStorage); nestedGame.SetHost(host); base.Add(nestedGame);