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:
kurtis.heimerl
2013-08-15 23:32:59 +00:00
parent 47e954db87
commit 69052ff847
2 changed files with 3 additions and 3 deletions

View File

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

View File

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