From 39cc4cc014c7514a9a72824b35e08742eab4c564 Mon Sep 17 00:00:00 2001 From: Pavlos Touboulidis Date: Thu, 15 May 2014 17:50:56 +0300 Subject: [PATCH] Use "debug" channel to report loading exceptions --- OpenRA.Game/GameInformation.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Game/GameInformation.cs b/OpenRA.Game/GameInformation.cs index 202b23100b..a4d191d599 100644 --- a/OpenRA.Game/GameInformation.cs +++ b/OpenRA.Game/GameInformation.cs @@ -99,7 +99,7 @@ namespace OpenRA } catch (InvalidOperationException) { - Log.Write("exception", "GameInformation deserialized invalid MiniYaml:\n{0}".F(data)); + Log.Write("debug", "GameInformation deserialized invalid MiniYaml:\n{0}".F(data)); throw; } }