misc (tracing) : add new TraceLogPack.Notification
This commit is contained in:
parent
389d6964b5
commit
56520c9282
2 changed files with 4 additions and 0 deletions
|
|
@ -16,6 +16,9 @@ enum class TraceLogPack(val key: String) {
|
||||||
},
|
},
|
||||||
TIMELINE("timeline") {
|
TIMELINE("timeline") {
|
||||||
override val title: String = "Timeline"
|
override val title: String = "Timeline"
|
||||||
|
},
|
||||||
|
NOTIFICATION_CLIENT("notification_client") {
|
||||||
|
override val title: String = "Notification Client"
|
||||||
};
|
};
|
||||||
|
|
||||||
abstract val title: String
|
abstract val title: String
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,7 @@ fun TraceLogPack.map(): RustTraceLogPack = when (this) {
|
||||||
TraceLogPack.SEND_QUEUE -> RustTraceLogPack.SEND_QUEUE
|
TraceLogPack.SEND_QUEUE -> RustTraceLogPack.SEND_QUEUE
|
||||||
TraceLogPack.EVENT_CACHE -> RustTraceLogPack.EVENT_CACHE
|
TraceLogPack.EVENT_CACHE -> RustTraceLogPack.EVENT_CACHE
|
||||||
TraceLogPack.TIMELINE -> RustTraceLogPack.TIMELINE
|
TraceLogPack.TIMELINE -> RustTraceLogPack.TIMELINE
|
||||||
|
TraceLogPack.NOTIFICATION_CLIENT -> RustTraceLogPack.NOTIFICATION_CLIENT
|
||||||
}
|
}
|
||||||
|
|
||||||
fun Collection<TraceLogPack>.map(): List<RustTraceLogPack> {
|
fun Collection<TraceLogPack>.map(): List<RustTraceLogPack> {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue