Loading packages/SystemUI/src/com/android/systemui/statusbar/notification/interruption/NotificationInterruptLogger.kt +4 −4 Original line number Diff line number Diff line Loading @@ -239,11 +239,11 @@ class NotificationInterruptLogger @Inject constructor( }) } fun logNoPulsingNotificationHidden(entry: NotificationEntry) { fun logNoPulsingNotificationHiddenOverride(entry: NotificationEntry) { buffer.log(TAG, DEBUG, { str1 = entry.logKey }, { "No pulsing: notification hidden on lock screen: $str1" "No pulsing: notification hidden on lock screen by override: $str1" }) } Loading Loading @@ -290,11 +290,11 @@ class NotificationInterruptLogger @Inject constructor( }) } fun keyguardHideNotification(entry: NotificationEntry) { fun logNoAlertingNotificationHidden(entry: NotificationEntry) { buffer.log(TAG, DEBUG, { str1 = entry.logKey }, { "Keyguard Hide Notification: $str1" "No alerting: notification hidden on lock screen: $str1" }) } } Loading packages/SystemUI/src/com/android/systemui/statusbar/notification/interruption/NotificationInterruptStateProviderImpl.java +2 −2 Original line number Diff line number Diff line Loading @@ -505,7 +505,7 @@ public class NotificationInterruptStateProviderImpl implements NotificationInter if (entry.getRanking().getLockscreenVisibilityOverride() == Notification.VISIBILITY_PRIVATE) { if (log) mLogger.logNoPulsingNotificationHidden(entry); if (log) mLogger.logNoPulsingNotificationHiddenOverride(entry); return false; } Loading Loading @@ -536,7 +536,7 @@ public class NotificationInterruptStateProviderImpl implements NotificationInter } if (mKeyguardNotificationVisibilityProvider.shouldHideNotification(entry)) { if (log) mLogger.keyguardHideNotification(entry); if (log) mLogger.logNoAlertingNotificationHidden(entry); return false; } Loading Loading
packages/SystemUI/src/com/android/systemui/statusbar/notification/interruption/NotificationInterruptLogger.kt +4 −4 Original line number Diff line number Diff line Loading @@ -239,11 +239,11 @@ class NotificationInterruptLogger @Inject constructor( }) } fun logNoPulsingNotificationHidden(entry: NotificationEntry) { fun logNoPulsingNotificationHiddenOverride(entry: NotificationEntry) { buffer.log(TAG, DEBUG, { str1 = entry.logKey }, { "No pulsing: notification hidden on lock screen: $str1" "No pulsing: notification hidden on lock screen by override: $str1" }) } Loading Loading @@ -290,11 +290,11 @@ class NotificationInterruptLogger @Inject constructor( }) } fun keyguardHideNotification(entry: NotificationEntry) { fun logNoAlertingNotificationHidden(entry: NotificationEntry) { buffer.log(TAG, DEBUG, { str1 = entry.logKey }, { "Keyguard Hide Notification: $str1" "No alerting: notification hidden on lock screen: $str1" }) } } Loading
packages/SystemUI/src/com/android/systemui/statusbar/notification/interruption/NotificationInterruptStateProviderImpl.java +2 −2 Original line number Diff line number Diff line Loading @@ -505,7 +505,7 @@ public class NotificationInterruptStateProviderImpl implements NotificationInter if (entry.getRanking().getLockscreenVisibilityOverride() == Notification.VISIBILITY_PRIVATE) { if (log) mLogger.logNoPulsingNotificationHidden(entry); if (log) mLogger.logNoPulsingNotificationHiddenOverride(entry); return false; } Loading Loading @@ -536,7 +536,7 @@ public class NotificationInterruptStateProviderImpl implements NotificationInter } if (mKeyguardNotificationVisibilityProvider.shouldHideNotification(entry)) { if (log) mLogger.keyguardHideNotification(entry); if (log) mLogger.logNoAlertingNotificationHidden(entry); return false; } Loading