fix some debug-channel stuff that beedee missed in rebase

This commit is contained in:
Chris Forbes
2010-06-11 18:00:36 +12:00
parent 3870be5122
commit 5d823d8e6e
3 changed files with 3 additions and 3 deletions

View File

@@ -93,7 +93,7 @@ namespace OpenRA.Traits
foreach (var t in self.traits.WithInterface<INotifyProduction>())
t.UnitProduced(self, newUnit);
Log.Write("{0} #{1} produced by {2} #{3}", newUnit.Info.Name, newUnit.ActorID, self.Info.Name, self.ActorID);
Log.Write("debug", "{0} #{1} produced by {2} #{3}", newUnit.Info.Name, newUnit.ActorID, self.Info.Name, self.ActorID);
return true;
}