diff --git a/sbws/lib/v3bwfile.py b/sbws/lib/v3bwfile.py index 8c5b9a9ceff0f7b015cf74dbc81ffc9abf9b5739..46e6357614d58770a9865975dfc0d6d67ad0fdfa 100644 --- a/sbws/lib/v3bwfile.py +++ b/sbws/lib/v3bwfile.py @@ -869,6 +869,7 @@ class V3BWLine(object): for r in reversed(results): if r.relay_average_bandwidth is not None: return r.relay_average_bandwidth + log.warning("Descriptor average bandwidth is None.") return None @staticmethod @@ -877,6 +878,7 @@ class V3BWLine(object): for r in reversed(results): if r.relay_burst_bandwidth is not None: return r.relay_burst_bandwidth + log.warning("Descriptor burst bandwidth is None.") return None @staticmethod @@ -885,6 +887,7 @@ class V3BWLine(object): for r in reversed(results): if r.consensus_bandwidth is not None: return r.consensus_bandwidth + log.warning("Consensus bandwidth is None.") return None @staticmethod @@ -893,6 +896,7 @@ class V3BWLine(object): for r in reversed(results): if r.consensus_bandwidth_is_unmeasured is not None: return r.consensus_bandwidth_is_unmeasured + log.warning("Consensus bandwidth is unmeasured is None.") return None @staticmethod @@ -912,6 +916,7 @@ class V3BWLine(object): for r in reversed(results): if r.relay_observed_bandwidth is not None: return r.relay_observed_bandwidth + log.warning("Descriptor observed bandwidth is None.") return None @property