Producer: Commented out log output

This was there for debugging purposes only.
qteditor
Mark 2016-06-01 20:42:03 +02:00
parent 98dc6fa252
commit e1413a941d
1 changed files with 2 additions and 2 deletions

View File

@ -822,7 +822,7 @@ public func IsCollectionAllowed(object item)
// This extremely special case is used by the ice object only, and should be removed in my opinion,
// but it is included for compatibility reasons at the moment.
// TODO
Log("Checking for conversion: queue is %v", queue);
//Log("Checking for conversion: queue is %v", queue);
if (item->~CanConvertToLiquidType())
{
for (var queued in queue)
@ -873,7 +873,7 @@ private func ConvertToLiquid(object obj)
liquid->Enter(this);
for (var item in FindObjects(Find_Container(this)))
{
Log("* %v %s", item, item->GetName());
//Log("* %v %s", item, item->GetName());
}
obj->RemoveObject();
}