misc (tracing) : add new TraceLogPack.Notification

This commit is contained in:
ganfra 2025-07-04 14:35:36 +02:00
parent 635711ebef
commit 1f426da8ac
2 changed files with 4 additions and 0 deletions

View file

@ -16,6 +16,9 @@ enum class TraceLogPack(val key: String) {
},
TIMELINE("timeline") {
override val title: String = "Timeline"
},
NOTIFICATION_CLIENT("notification_client") {
override val title: String = "Notification Client"
};
abstract val title: String