aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorttsou <ttsou@19bc5d8c-e614-43d4-8b26-e1612bc8e597>2012-02-14 17:58:11 +0000
committerttsou <ttsou@19bc5d8c-e614-43d4-8b26-e1612bc8e597>2012-02-14 17:58:11 +0000
commit3b5c0c1e91db9d6ef4d19a4879c8c7953fb67054 (patch)
tree39a97d52aa477735dcf33243eea683e79318628e
parent37720bebbceea2eb1bf89898825d26d6cab07b03 (diff)
transceiver, uhd: fix build error due to log level
Previous commit r3181 used a 2.6 logging level. ALARM->ALERT Fix for 2.8 levels. Signed-off-by: Thomas Tsou <ttsou@vt.edu> git-svn-id: http://wush.net/svn/range/software/public/openbts/trunk@3187 19bc5d8c-e614-43d4-8b26-e1612bc8e597
-rw-r--r--Transceiver52M/UHDDevice.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Transceiver52M/UHDDevice.cpp b/Transceiver52M/UHDDevice.cpp
index cb90410..e240f7d 100644
--- a/Transceiver52M/UHDDevice.cpp
+++ b/Transceiver52M/UHDDevice.cpp
@@ -440,7 +440,7 @@ bool uhd_device::open()
try {
usrp_dev = uhd::usrp::multi_usrp::make(dev_addrs[0]);
} catch(...) {
- LOG(ALARM) << "UHD make failed, device " << dev_addrs[0].to_string();
+ LOG(ALERT) << "UHD make failed, device " << dev_addrs[0].to_string();
return false;
}