Merge "Updating error print in AGPS state machine"
This commit is contained in:
commit
928e3eca59
1 changed files with 4 additions and 1 deletions
|
@ -209,7 +209,10 @@ void AgpsStateMachine::processAgpsEventReleased(){
|
||||||
switch (mState){
|
switch (mState){
|
||||||
|
|
||||||
case AGPS_STATE_RELEASED:
|
case AGPS_STATE_RELEASED:
|
||||||
LOC_LOGE("Unexpected event RELEASED in state %d", mState);
|
/* Subscriber list should be empty if we are in released state */
|
||||||
|
if (!mSubscriberList.empty()) {
|
||||||
|
LOC_LOGE("Unexpected event RELEASED in RELEASED state");
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case AGPS_STATE_ACQUIRED:
|
case AGPS_STATE_ACQUIRED:
|
||||||
|
|
Loading…
Reference in a new issue