mirror of
https://github.com/fairwaves/openbts-2.8.git
synced 2025-11-19 05:48:15 +00:00
stepping down from alert to warning to reduce tension from users of UHD devices
git-svn-id: http://wush.net/svn/range/software/public/openbts/trunk@6192 19bc5d8c-e614-43d4-8b26-e1612bc8e597
This commit is contained in:
@@ -458,10 +458,10 @@ void L1Encoder::handoverPending(bool flag)
|
|||||||
{
|
{
|
||||||
if (flag) {
|
if (flag) {
|
||||||
bool ok = mDownstream->setHandover(mTN);
|
bool ok = mDownstream->setHandover(mTN);
|
||||||
if (!ok) LOG(ALERT) << "handover setup failed";
|
if (!ok) LOG(WARNING) << "handover setup failed";
|
||||||
} else {
|
} else {
|
||||||
bool ok = mDownstream->clearHandover(mTN);
|
bool ok = mDownstream->clearHandover(mTN);
|
||||||
if (!ok) LOG(ALERT) << "handover clear failed";
|
if (!ok) LOG(WARNING) << "handover clear failed";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -546,7 +546,7 @@ bool ::ARFCNManager::clearHandover(unsigned TN)
|
|||||||
assert(TN<8);
|
assert(TN<8);
|
||||||
int status = sendCommand("NOHANDOVER",TN);
|
int status = sendCommand("NOHANDOVER",TN);
|
||||||
if (status!=0) {
|
if (status!=0) {
|
||||||
LOG(ALERT) << "NOHANDOVER failed with status " << status;
|
LOG(WARNING) << "NOHANDOVER failed with status " << status;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
|||||||
Reference in New Issue
Block a user