1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
package com.android.systemui.statusbar.notification.stack
import com.android.systemui.log.dagger.NotificationHeadsUpLog
import com.android.systemui.plugins.log.LogBuffer
import com.android.systemui.plugins.log.LogLevel
import com.android.systemui.statusbar.notification.logKey
import javax.inject.Inject
class StackStateLogger @Inject constructor(
@NotificationHeadsUpLog private val buffer: LogBuffer
) {
fun logHUNViewDisappearing(key: String) {
buffer.log(TAG, LogLevel.INFO, {
str1 = logKey(key)
}, {
"Heads up view disappearing $str1 "
})
}
fun logHUNViewAppearing(key: String) {
buffer.log(TAG, LogLevel.INFO, {
str1 = logKey(key)
}, {
"Heads up notification view appearing $str1 "
})
}
fun logHUNViewDisappearingWithRemoveEvent(key: String) {
buffer.log(TAG, LogLevel.ERROR, {
str1 = logKey(key)
}, {
"Heads up view disappearing $str1 for ANIMATION_TYPE_REMOVE"
})
}
fun logHUNViewAppearingWithAddEvent(key: String) {
buffer.log(TAG, LogLevel.ERROR, {
str1 = logKey(key)
}, {
"Heads up view disappearing $str1 for ANIMATION_TYPE_ADD"
})
}
fun disappearAnimationEnded(key: String) {
buffer.log(TAG, LogLevel.INFO, {
str1 = logKey(key)
}, {
"Heads up notification disappear animation ended $str1 "
})
}
fun appearAnimationEnded(key: String) {
buffer.log(TAG, LogLevel.INFO, {
str1 = logKey(key)
}, {
"Heads up notification appear animation ended $str1 "
})
}
}
private const val TAG = "StackScroll"
|