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

Commit 165362c8 authored by Lyn Han's avatar Lyn Han Committed by Automerger Merge Worker
Browse files

Merge "Add FSI debug class" into tm-qpr-dev am: d081c219 am: a6daee55

parents c5777fb0 a6daee55
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