Skip to content

Commit d323148

Browse files
committed
Log param.
1 parent e73f96e commit d323148

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libraries/push/impl/src/main/kotlin/io/element/android/libraries/push/impl/notifications/DefaultNotificationDrawerManager.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ class DefaultNotificationDrawerManager @Inject constructor(
233233
private fun CoroutineScope.refreshNotificationDrawer(doRender: Boolean) = launch {
234234
// Implement last throttler
235235
val canHandle = firstThrottler.canHandle()
236-
Timber.v("refreshNotificationDrawer(), delay: ${canHandle.waitMillis()} ms")
236+
Timber.v("refreshNotificationDrawer($doRender), delay: ${canHandle.waitMillis()} ms")
237237
withContext(dispatchers.io) {
238238
delay(canHandle.waitMillis())
239239
try {
@@ -246,7 +246,7 @@ class DefaultNotificationDrawerManager @Inject constructor(
246246
}
247247

248248
private suspend fun refreshNotificationDrawerBg(doRender: Boolean) {
249-
Timber.v("refreshNotificationDrawerBg()")
249+
Timber.v("refreshNotificationDrawerBg($doRender)")
250250
val eventsToRender = notificationState.updateQueuedEvents { queuedEvents, renderedEvents ->
251251
notifiableEventProcessor.process(queuedEvents.rawEvents(), renderedEvents).also {
252252
queuedEvents.clearAndAdd(it.onlyKeptEvents())

0 commit comments

Comments
 (0)