Merge "Add FSI debug class" into tm-qpr-dev

This commit is contained in:
Lyn Han
2022-12-10 07:42:49 +00:00
committed by Android (Google) Code Review

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