Fixing issue with logging and refreshing policy from settings.

master
Tomasz Półgrabia 2016-10-09 11:51:14 +02:00
parent 56e9b660bb
commit 94418fccdd
2 changed files with 5 additions and 5 deletions

View File

@ -6,7 +6,7 @@
<!-- active log file --> <!-- active log file -->
<file>${LOG_DIR}/logs/urban-explorer.txt</file> <file>${LOG_DIR}/logs/urban-explorer.txt</file>
<encoder> <encoder>
<pattern>%d{HH:mm:ss.SSS} [%-20thread] %-5level %logger{36} - %msg</pattern> <pattern>%d{HH:mm:ss.SSS} [%-20thread] %-5level %logger{36} - %msg\n</pattern>
</encoder> </encoder>
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy"> <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">

View File

@ -301,13 +301,13 @@ public class MainActivity extends ActionBarActivity {
lg.debug("Selected location provider {} is available", locationProvider); lg.debug("Selected location provider {} is available", locationProvider);
final Long updateTime = HelperUtils.fetchGpsUpdateFreq(this); final Long updateTimeInMinutes = HelperUtils.fetchGpsUpdateFreq(this);
lg.debug("Update time: {}", updateTime); lg.debug("Update time: {}", updateTimeInMinutes);
if (locationProvider != null) { if (locationProvider != null) {
lg.debug("Requesting location updates"); lg.debug("Requesting location updates");
LocationManager locationService = (LocationManager)getSystemService(LOCATION_SERVICE); LocationManager locationService = (LocationManager)getSystemService(LOCATION_SERVICE);
locationService.requestLocationUpdates(locationProvider, locationService.requestLocationUpdates(locationProvider,
updateTime, updateTimeInMinutes,
HelperUtils.fetchGpsDistanceFreq(this), HelperUtils.fetchGpsDistanceFreq(this),
locationCallback); locationCallback);
locationServicesActivated = true; locationServicesActivated = true;
@ -318,7 +318,7 @@ public class MainActivity extends ActionBarActivity {
lg.debug("Now: {}", now); lg.debug("Now: {}", now);
final long lastLocationUpdateTimeAgo = now - lastLocationUpdateTime; final long lastLocationUpdateTimeAgo = now - lastLocationUpdateTime;
lg.debug("Last location update was {} ms ago", lastLocationUpdateTimeAgo); lg.debug("Last location update was {} ms ago", lastLocationUpdateTimeAgo);
if (lastLocationUpdateTime < 0 || lastLocationUpdateTimeAgo >= updateTime) { if (lastLocationUpdateTime < 0 || lastLocationUpdateTimeAgo >= updateTimeInMinutes*1000.0) {
lg.info("Last location update time exceeded. Requesting single update..."); lg.info("Last location update time exceeded. Requesting single update...");
locationService.requestSingleUpdate(locationProvider, locationCallback, Looper.getMainLooper()); locationService.requestSingleUpdate(locationProvider, locationCallback, Looper.getMainLooper());
} }