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
This commit is contained in:
Thomas Tsou
2012-02-14 17:58:11 +00:00
parent 19d877d7c7
commit e4c8e51849

View File

@@ -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;
}