Internal: Oops: removed debug logging

This commit is contained in:
ZZYZX 2017-02-20 08:21:56 +02:00 committed by spherallic
parent 8648227423
commit 27be4b6868

View file

@ -2262,10 +2262,10 @@ namespace CodeImp.DoomBuilder.Map
watch.Start();
if (!builder.TraceSector(ls.Line, ls.Front))
{
General.ErrorLogger.Add(ErrorType.Warning, string.Format("TraceSector: took {0}ms, failed!", watch.ElapsedMilliseconds));
//General.ErrorLogger.Add(ErrorType.Warning, string.Format("TraceSector: took {0}ms, failed!", watch.ElapsedMilliseconds));
continue; // Don't create sector if trace failed
}
General.ErrorLogger.Add(ErrorType.Warning, string.Format("TraceSector: took {0}ms", watch.ElapsedMilliseconds));
//General.ErrorLogger.Add(ErrorType.Warning, string.Format("TraceSector: took {0}ms", watch.ElapsedMilliseconds));
// Find any subsequent edges that were part of the sector created
bool has_existing_lines = false;