Add FSI debug class

Bug: 243421660
Test: logging works for local development
Change-Id: I54e8bc6542dd3b8b2ea4bffc2bbe63a9534acf35
This commit is contained in:
Lyn Han
2022-12-06 14:52:10 -08:00
parent f00bc19184
commit 4e386dfec6

View File

@@ -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")
}
}
}