Skip to content

Commit

Permalink
removed debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
Monitor221hz committed Mar 6, 2024
1 parent bed280b commit e962035
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,7 @@ public void LoadTrackedProjects()
}
}
}
var stopwatch = Stopwatch.StartNew();
LoadProjects(projectPaths);
stopwatch.Stop();
Debug.WriteLine($"Projects loaded in {stopwatch.ElapsedMilliseconds}ms");
}
public void LoadProjects(List<string> projectPaths)
{
Expand Down Expand Up @@ -323,10 +320,6 @@ public async Task<bool> ApplyPatchesParallel()
packFile.ApplyChanges();
});


//#if DEBUG || DEBUGRELEASE
// foreach(PackFile packFile in ActivePackFiles) { Debug.WriteLine(packFile.UniqueName); }
//#endif
await deleteOutputTask;
Parallel.ForEach(ActivePackFiles, packFile => { CompleteExportSuccess = packFile.Export(); });

Expand Down

0 comments on commit e962035

Please sign in to comment.