Commit 8e4c509d authored by Kirill Smelkov's avatar Kirill Smelkov

Revert "promise/plugin: improve check-rx-saturated messages"

This reverts commit 4c984df1.
parent 4522fdbf
......@@ -36,13 +36,9 @@ class RunPromise(JSONPromise):
if not max_rx_list:
self.logger.error("No RX samples data available")
elif saturated:
self.logger.error(
"RX Max dBFS: {} (RX antennas saturated, please lower rx_gain)".format(
", ".join(max_rx_list)))
self.logger.error("RX antenna saturated, please lower rx_gain")
else:
self.logger.info(
"RX Max dBFS: {} (No saturation detected on RX antennas)".format(
", ".join(max_rx_list)))
self.logger.info("No saturation detected on RX antenna")
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