[android] Fixed crash during logger initialization in NativeJobService

This commit is contained in:
Александр Зацепин 2018-10-31 13:50:42 +03:00 committed by Roman Kuznetsov
parent d5166aed57
commit f4cd1c060e

View file

@ -12,7 +12,6 @@ import com.mapswithme.util.log.LoggerFactory;
@TargetApi(Build.VERSION_CODES.LOLLIPOP)
public class NativeJobService extends JobService
{
private static final Logger LOGGER = LoggerFactory.INSTANCE.getLogger(LoggerFactory.Type.MISC);
private static final String TAG = NativeJobService.class.getSimpleName();
@SuppressWarnings("NullableProblems")
@ -29,7 +28,8 @@ public class NativeJobService extends JobService
@Override
public boolean onStartJob(JobParameters params)
{
LOGGER.d(TAG, "onStartJob");
Logger logger = LoggerFactory.INSTANCE.getLogger(LoggerFactory.Type.MISC);
logger.d(TAG, "onStartJob");
return mDelegate.onStartJob();
}