diff options
author | andreas128 <Andreas> | 2017-09-12 17:42:33 +0200 |
---|---|---|
committer | andreas128 <Andreas> | 2017-09-12 17:42:33 +0200 |
commit | 92076c98302da1a04fdf4d57d7f07aa46ccde22e (patch) | |
tree | d62f6d4f027cdaf9b9abcac30b0a97485e6406f5 /dpd/src | |
parent | 4f9372c130960559a0bba13828a810eb57e30123 (diff) | |
download | dabmod-92076c98302da1a04fdf4d57d7f07aa46ccde22e.tar.gz dabmod-92076c98302da1a04fdf4d57d7f07aa46ccde22e.tar.bz2 dabmod-92076c98302da1a04fdf4d57d7f07aa46ccde22e.zip |
Remove raw logging
Diffstat (limited to 'dpd/src')
-rw-r--r-- | dpd/src/Measure.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/dpd/src/Measure.py b/dpd/src/Measure.py index 2450b8a..7a9246c 100644 --- a/dpd/src/Measure.py +++ b/dpd/src/Measure.py @@ -104,10 +104,6 @@ class Measure: txframe, tx_ts, rxframe, rx_ts = self.receive_tcp() - if logging.getLogger().getEffectiveLevel() == logging.DEBUG: - dt = datetime.datetime.now().isoformat() - txframe.tofile(logging_path + "/txframe_" + dt + ".iq") - # Normalize received signal with sent signal rx_median = np.median(np.abs(rxframe)) rxframe = rxframe / rx_median * np.median(np.abs(txframe)) |