diff options
author | 2025-02-09 22:14:59 -0800 | |
---|---|---|
committer | 2025-02-09 22:14:59 -0800 | |
commit | 332344f6544a8485db97d8d7025b60b5502ac397 (patch) | |
tree | 82d4889f29c52b9071c5d20e72cc5abfbca8b311 | |
parent | 22155fcb7af3896a302f70495dc2c4706125ee5f (diff) |
Revert "Always log dropped HUNs in debug mode"
This reverts commit 22155fcb7af3896a302f70495dc2c4706125ee5f.
Reason for revert: b/394734085
Change-Id: Ia511f6a835a8664a9eaa1a413eea872b5eca0bc6
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/notification/headsup/AvalancheController.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/notification/headsup/AvalancheController.kt b/packages/SystemUI/src/com/android/systemui/statusbar/notification/headsup/AvalancheController.kt index de113d365bd8..ccc2dffcfd7b 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/notification/headsup/AvalancheController.kt +++ b/packages/SystemUI/src/com/android/systemui/statusbar/notification/headsup/AvalancheController.kt @@ -49,7 +49,7 @@ constructor( ) : Dumpable { private val tag = "AvalancheController" - private val debug = Compile.IS_DEBUG + private val debug = Compile.IS_DEBUG && Log.isLoggable(tag, Log.DEBUG) var baseEntryMapStr: () -> String = { "baseEntryMapStr not initialized" } var enableAtRuntime = true |