From 80cd6a39988a06856522741ae1abef389d2bb795 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Frosteg=C3=A5rd?= Date: Sat, 6 Aug 2022 14:40:52 +0200 Subject: [PATCH] udp: improve docs for config.statistics.extended --- aquatic_udp/src/config.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/aquatic_udp/src/config.rs b/aquatic_udp/src/config.rs index b37b106..f932395 100644 --- a/aquatic_udp/src/config.rs +++ b/aquatic_udp/src/config.rs @@ -143,6 +143,9 @@ pub struct StatisticsConfig { /// Collect and print/write statistics this often (seconds) pub interval: u64, /// Enable extended statistics (on peers per torrent) + /// + /// Will increase time taken for torrent cleaning, since that's when + /// these statistics are collected. pub extended: bool, /// Print statistics to standard output pub print_to_stdout: bool,