Fix wrong log channel name: Debug -> debug

This commit is contained in:
Oliver Brakmann
2015-01-25 18:31:33 +01:00
parent a38a1918dc
commit 16cf805a23

View File

@@ -60,8 +60,8 @@ namespace OpenRA
{
Console.WriteLine("Failed to load map: {0}", path);
Console.WriteLine("Details: {0}", e);
Log.Write("Debug", "Failed to load map: {0}", path);
Log.Write("Debug", "Details: {0}", e);
Log.Write("debug", "Failed to load map: {0}", path);
Log.Write("debug", "Details: {0}", e);
}
}
}