File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
presentation/src/main/java/com/stop/ui/mission Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ import android.content.pm.PackageManager
10
10
import android.content.pm.ServiceInfo.FOREGROUND_SERVICE_TYPE_LOCATION
11
11
import android.os.Build
12
12
import android.os.Looper
13
- import android.util.Log
14
13
import androidx.core.app.ActivityCompat
15
14
import androidx.core.app.NotificationCompat
16
15
import androidx.hilt.work.HiltWorker
@@ -55,7 +54,6 @@ class MissionWorker @AssistedInject constructor(
55
54
.addOnSuccessListener { location ->
56
55
if (location != null ) {
57
56
missionManager.userLocation.value = Location (location.latitude, location.longitude)
58
- Log .d(" MissionWorker" , " initLocation(last) ${location.latitude} , ${location.longitude} " )
59
57
}
60
58
}
61
59
.addOnFailureListener {
@@ -113,7 +111,6 @@ class MissionWorker @AssistedInject constructor(
113
111
114
112
private fun createChannel (id : String ) {
115
113
if (isMoreThanOreo()) {
116
- Log .d(" MissionWorker" , " createChannel ${notificationManager.getNotificationChannel(id)} " )
117
114
if (notificationManager.getNotificationChannel(id) == null ) {
118
115
val name = applicationContext.getString(R .string.mission_notification_channel_name)
119
116
NotificationChannel (id, name, NotificationManager .IMPORTANCE_DEFAULT ).apply {
You can’t perform that action at this time.
0 commit comments