summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Yuri Lin <yurilin@google.com> 2023-04-18 17:06:35 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2023-04-18 17:06:35 +0000
commit0ecccdd14ca84b9ff81333d02c12e0a87a4e4e94 (patch)
tree06caab375a9ba65ac2cedff44b98f6903a76e044
parent3dbf86bae139586b44fcb537cbd70b19b5d197cc (diff)
parentf5d1cc411d4c0609a3e05985ef8b4a7385f10205 (diff)
Merge "Add flag LOG_DND_STATE_EVENTS to gate DND event logging" into udc-dev
-rw-r--r--core/java/com/android/internal/config/sysui/SystemUiSystemPropertiesFlags.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/core/java/com/android/internal/config/sysui/SystemUiSystemPropertiesFlags.java b/core/java/com/android/internal/config/sysui/SystemUiSystemPropertiesFlags.java
index 2b08a5525d82..853fe2f114f7 100644
--- a/core/java/com/android/internal/config/sysui/SystemUiSystemPropertiesFlags.java
+++ b/core/java/com/android/internal/config/sysui/SystemUiSystemPropertiesFlags.java
@@ -77,6 +77,10 @@ public class SystemUiSystemPropertiesFlags {
/** Gating the removal of sorting-notifications-by-interruptiveness. */
public static final Flag NO_SORT_BY_INTERRUPTIVENESS =
devFlag("persist.sysui.notification.no_sort_by_interruptiveness");
+
+ /** Gating the logging of DND state change events. */
+ public static final Flag LOG_DND_STATE_EVENTS =
+ devFlag("persist.sysui.notification.log_dnd_state_events");
}
//// == End of flags. Everything below this line is the implementation. == ////