Skip to content

Commit 64d33bc

Browse files
committed
style : Log 제거
1 parent d12d968 commit 64d33bc

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

presentation/src/main/java/com/stop/ui/mission/MissionWorker.kt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import android.content.pm.PackageManager
1010
import android.content.pm.ServiceInfo.FOREGROUND_SERVICE_TYPE_LOCATION
1111
import android.os.Build
1212
import android.os.Looper
13-
import android.util.Log
1413
import androidx.core.app.ActivityCompat
1514
import androidx.core.app.NotificationCompat
1615
import androidx.hilt.work.HiltWorker
@@ -55,7 +54,6 @@ class MissionWorker @AssistedInject constructor(
5554
.addOnSuccessListener { location ->
5655
if (location != null) {
5756
missionManager.userLocation.value = Location(location.latitude, location.longitude)
58-
Log.d("MissionWorker", "initLocation(last) ${location.latitude} , ${location.longitude}")
5957
}
6058
}
6159
.addOnFailureListener {
@@ -113,7 +111,6 @@ class MissionWorker @AssistedInject constructor(
113111

114112
private fun createChannel(id: String) {
115113
if (isMoreThanOreo()) {
116-
Log.d("MissionWorker", "createChannel ${notificationManager.getNotificationChannel(id)}")
117114
if (notificationManager.getNotificationChannel(id) == null) {
118115
val name = applicationContext.getString(R.string.mission_notification_channel_name)
119116
NotificationChannel(id, name, NotificationManager.IMPORTANCE_DEFAULT).apply {

0 commit comments

Comments
 (0)