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

Commit d081c219 authored by Lyn Han's avatar Lyn Han Committed by Android (Google) Code Review
Browse files

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

parents 37929e00 4e386dfe
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