TrafficGenerator: Less logging of unsent
[csit.git] / resources / libraries / python / TrafficGenerator.py
index e42ad48..a26d0fa 100644 (file)
@@ -1307,7 +1307,8 @@ class TrafficGenerator(AbstractMeasurer):
             fail_count = self._loss + unsent
         else:
             raise RuntimeError(f"Unknown parsing {self.transaction_type!r}")
-        if unsent:
+        if unsent and isinstance(self._approximated_duration, float):
+            # Do not report unsent for "manual".
             logger.debug(f"Unsent packets/transactions: {unsent}")
         if fail_count < 0 and not self.negative_loss:
             fail_count = 0