From ba7a18d80d23683e504d1efdb143b737dfbf5296 Mon Sep 17 00:00:00 2001 From: Thomas Tsou Date: Fri, 7 Oct 2011 16:27:44 -0400 Subject: [PATCH] transceiver: add a newline for uhd information outputs Minor change to clarify the logging output. Signed-off-by: Thomas Tsou --- public-trunk/Transceiver52M/UHDDevice.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/public-trunk/Transceiver52M/UHDDevice.cpp b/public-trunk/Transceiver52M/UHDDevice.cpp index b3d41d7..a5b1f0c 100644 --- a/public-trunk/Transceiver52M/UHDDevice.cpp +++ b/public-trunk/Transceiver52M/UHDDevice.cpp @@ -449,7 +449,7 @@ bool uhd_device::open() set_ref_clk(use_ext_ref); // Print configuration - LOG(INFO) << usrp_dev->get_pp_string(); + LOG(INFO) << "\n" << usrp_dev->get_pp_string(); // Check for a valid device type and set bus type if (!parse_dev_type()) @@ -717,7 +717,7 @@ bool uhd_device::updateAlignment(TIMESTAMP timestamp) bool uhd_device::setTxFreq(double wFreq) { uhd::tune_result_t tr = usrp_dev->set_tx_freq(wFreq); - LOG(INFO) << tr.to_pp_string(); + LOG(INFO) << "\n" << tr.to_pp_string(); tx_freq = usrp_dev->get_tx_freq(); return true; @@ -726,7 +726,7 @@ bool uhd_device::setTxFreq(double wFreq) bool uhd_device::setRxFreq(double wFreq) { uhd::tune_result_t tr = usrp_dev->set_rx_freq(wFreq); - LOG(INFO) << tr.to_pp_string(); + LOG(INFO) << "\n" << tr.to_pp_string(); rx_freq = usrp_dev->get_rx_freq(); return true;