summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsanjay.ka <sanjay.ka@samsung.com>2013-03-26 14:50:25 +0530
committersanjay.ka <sanjay.ka@samsung.com>2013-03-26 14:54:38 +0530
commite85c9f807ac9e6007e1714f7c730f485f0a85858 (patch)
tree4b41bc7ce542e780d0f4295a71c1352f2b18634c
parent19a22f57cdbbf0f39313218666cfecb1fdd8da5b (diff)
downloadlocations-e85c9f807ac9e6007e1714f7c730f485f0a85858.tar.gz
locations-e85c9f807ac9e6007e1714f7c730f485f0a85858.tar.bz2
locations-e85c9f807ac9e6007e1714f7c730f485f0a85858.zip
Fix for the issue N_SE-29643.
Change-Id: I5775d776575655301f2f84b71fffed0094307a3b Signed-off-by: sanjay.ka <sanjay.ka@samsung.com>
-rw-r--r--src/FLoc_LocationProviderImpl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/FLoc_LocationProviderImpl.cpp b/src/FLoc_LocationProviderImpl.cpp
index 5bd8c9a..c365863 100644
--- a/src/FLoc_LocationProviderImpl.cpp
+++ b/src/FLoc_LocationProviderImpl.cpp
@@ -953,10 +953,10 @@ void
_LocationProviderImpl::StopRegionMonitoring(void)
{
result r = _AlarmImpl::GetInstance(__regionMonitor.pAlarm.get())->Cancel();
- SysTryReturnVoidResult(NID_LOC, r == E_SUCCESS, r, "[%s] Failed to stop the alarm. Ignored.", GetErrorMessage(r));
+ SysTryLog(NID_LOC, r == E_SUCCESS, "[%s] Failed to stop the alarm. Ignored.", GetErrorMessage(r));
r = __regionMonitor.pTimer->Cancel();
- SysTryReturnVoidResult(NID_LOC, r == E_SUCCESS, r, "[%s] Failed to stop the timer. Ignored.", GetErrorMessage(r));
+ SysTryLog(NID_LOC, r == E_SUCCESS, "[%s] Failed to stop the timer. Ignored.", GetErrorMessage(r));
r = __pLocationManager->StopLocationUpdates(__regionMonitor.reqId);
SysTryReturnVoidResult(NID_LOC, r == E_SUCCESS, r, "[%s] All regions are removed but failed to stop the location updates. Ignored.", GetErrorMessage(r));