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

Commit a6daee55 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

parents bc77c0a8 d081c219
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