From 442241b6cd518ff7bfe107a391dd286660a75536 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Sun, 19 Oct 2014 21:13:58 +0200 Subject: [PATCH] fix Exception: Tried logging to non-existant channel debug --- OpenRA.Lint/YamlChecker.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/OpenRA.Lint/YamlChecker.cs b/OpenRA.Lint/YamlChecker.cs index 4738987ec6..a076c082ed 100644 --- a/OpenRA.Lint/YamlChecker.cs +++ b/OpenRA.Lint/YamlChecker.cs @@ -42,6 +42,7 @@ namespace OpenRA.Lint try { + Log.AddChannel("debug", null); Log.AddChannel("perf", null); var options = args.Where(a => a.StartsWith("-"));