Removing benign error message
Removing error message from GNSS update SV Type config method for onDeviceUp scenario. Change-Id: I7a93f9ea2fd5f8c1182c9ce10d298fc5971bc1e3 CRs-Fixed: 2461765
This commit is contained in:
parent
51426e477b
commit
c7cbd60fb5
1 changed files with 4 additions and 5 deletions
|
@ -1636,9 +1636,10 @@ GnssAdapter::gnssSvTypeConfigUpdate(const GnssSvTypeConfig& config)
|
|||
void
|
||||
GnssAdapter::gnssSvTypeConfigUpdate(bool sendReset)
|
||||
{
|
||||
LOC_LOGd("constellations blacklisted 0x%" PRIx64 ", enabled 0x%" PRIx64 ", sendReset %d",
|
||||
mGnssSvTypeConfig.blacklistedSvTypesMask, mGnssSvTypeConfig.enabledSvTypesMask,
|
||||
sendReset);
|
||||
LOC_LOGd("size %zu constellations blacklisted 0x%" PRIx64 ", enabled 0x%" PRIx64
|
||||
", sendReset %d",
|
||||
mGnssSvTypeConfig.size, mGnssSvTypeConfig.blacklistedSvTypesMask,
|
||||
mGnssSvTypeConfig.enabledSvTypesMask, sendReset);
|
||||
|
||||
if (mGnssSvTypeConfig.size == sizeof(mGnssSvTypeConfig)) {
|
||||
|
||||
|
@ -1674,8 +1675,6 @@ GnssAdapter::gnssSvTypeConfigUpdate(bool sendReset)
|
|||
svTypeConfig.enabledSvTypesMask = mGnssSvTypeConfig.enabledSvTypesMask;
|
||||
mLocApi->setConstellationControl(svTypeConfig);
|
||||
}
|
||||
} else {
|
||||
LOC_LOGE("Invalid GnssSvTypeConfig size");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue