Merge "Add FSI debug class" into tm-qpr-dev
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
package com.android.systemui.statusbar.notification.fsi
|
||||
|
||||
class FsiDebug {
|
||||
|
||||
companion object {
|
||||
private const val debugTag = "FsiDebug"
|
||||
private const val debug = true
|
||||
|
||||
fun log(s: Any) {
|
||||
if (!debug) {
|
||||
return
|
||||
}
|
||||
android.util.Log.d(debugTag, "$s")
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user