Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4e386dfe authored by Lyn Han's avatar Lyn Han
Browse files

Add FSI debug class

Bug: 243421660
Test: logging works for local development
Change-Id: I54e8bc6542dd3b8b2ea4bffc2bbe63a9534acf35
parent f00bc191
Loading
Loading
Loading
Loading
+16 −0
Original line number Diff line number Diff line
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")
        }
    }
}
 No newline at end of file