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 6dfce1265c
commit b288d5c7ff
2 changed files with 3 additions and 3 deletions

View File

@@ -458,10 +458,10 @@ void L1Encoder::handoverPending(bool flag)
{
if (flag) {
bool ok = mDownstream->setHandover(mTN);
if (!ok) LOG(ALERT) << "handover setup failed";
if (!ok) LOG(WARNING) << "handover setup failed";
} else {
bool ok = mDownstream->clearHandover(mTN);
if (!ok) LOG(ALERT) << "handover clear failed";
if (!ok) LOG(WARNING) << "handover clear failed";
}
}