File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
app/src/main/java/to/bitkit/repositories Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -147,6 +147,7 @@ class WidgetsRepo @Inject constructor(
147147 private fun stopWidgetRefresh (widgetType : WidgetType ) {
148148 widgetJobs[widgetType]?.cancel()
149149 widgetJobs.remove(widgetType)
150+ Logger .verbose(" Stopped refresh coroutine for $widgetType " , context = TAG )
150151 }
151152
152153 suspend fun addWidget (type : WidgetType ) = withContext(bgDispatcher) { widgetsStore.addWidget(type) }
@@ -190,7 +191,7 @@ class WidgetsRepo @Inject constructor(
190191 service.fetchData()
191192 .onSuccess { data ->
192193 updateStore(data)
193- Logger .verbose(" Updated $widgetType widget successfully" )
194+ Logger .verbose(" Updated $widgetType widget successfully" , context = TAG )
194195 }
195196 .onFailure { e ->
196197 Logger .verbose(" Failed to update $widgetType widget" , e = e, context = TAG )
You can’t perform that action at this time.
0 commit comments