Commit 0982927e authored by Joanne Hugé's avatar Joanne Hugé

!fixup promise/plugin: improve check-rx-saturated messages

parent 4c984df1
Pipeline #30430 passed with stage
in 0 seconds
......@@ -38,11 +38,11 @@ class RunPromise(JSONPromise):
elif saturated:
self.logger.error(
"RX Max dBFS: {} (RX antennas saturated, please lower rx_gain)".format(
", ".join(max_rx_list)))
", ".join(map("{:0.2f}".format, max_rx_list))))
else:
self.logger.info(
"RX Max dBFS: {} (No saturation detected on RX antennas)".format(
", ".join(max_rx_list)))
", ".join(map("{:0.2f}".format, max_rx_list))))
def test(self):
"""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment