Add FSI debug class
Bug: 243421660 Test: logging works for local development Change-Id: I54e8bc6542dd3b8b2ea4bffc2bbe63a9534acf35
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