transceiver: uhd: increase log level on constructor errors

Exceptions on make are major no-start conditions. Make these
errors more apparent.

Signed-off-by: Thomas Tsou <ttsou@vt.edu>

git-svn-id: http://wush.net/svn/range/software/public/openbts/trunk@2688 19bc5d8c-e614-43d4-8b26-e1612bc8e597
This commit is contained in:
Kurtis Heimerl
2011-11-26 03:19:25 +00:00
parent 1c6d6b90ba
commit 54651390a3

View File

@@ -419,7 +419,7 @@ bool uhd_device::open()
try {
usrp_dev = uhd::usrp::single_usrp::make(dev_addr);
} catch(...) {
LOG(ERR) << "UHD make failed";
LOG(ALERT) << "UHD make failed";
return false;
}