Skip to content

Commit

Permalink
- Second part to fix #103
Browse files Browse the repository at this point in the history
  • Loading branch information
KoalaBear84 committed Aug 28, 2021
1 parent 7d18be3 commit 84b27cb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/OpenDirectoryDownloader/Command.cs
Original file line number Diff line number Diff line change
Expand Up @@ -231,8 +231,7 @@ private static void ShowThreads(OpenDirectoryIndexer openDirectoryIndexer)
private static void ShowStatistics(OpenDirectoryIndexer openDirectoryIndexer)
{
Console.WriteLine(Statistics.GetSessionStats(OpenDirectoryIndexer.Session, includeExtensions: true));
Console.WriteLine($"Queue: {Library.FormatWithThousands(openDirectoryIndexer.WebDirectoriesQueue.Count)}, Threads: {openDirectoryIndexer.RunningWebDirectoryThreads}");
Console.WriteLine($"Queue (filesize): {Library.FormatWithThousands(openDirectoryIndexer.WebFilesFileSizeQueue.Count)}, Threads (filesize): {openDirectoryIndexer.RunningWebFileFileSizeThreads}");
Console.WriteLine($"Queue: {Library.FormatWithThousands(openDirectoryIndexer.WebDirectoriesQueue.Count)} ({openDirectoryIndexer.RunningWebDirectoryThreads}), Queue (filesizes): {Library.FormatWithThousands(openDirectoryIndexer.WebFilesFileSizeQueue.Count)} ({openDirectoryIndexer.RunningWebFileFileSizeThreads})");
}
}
}

0 comments on commit 84b27cb

Please sign in to comment.