The power of android logcat, now developer can jump right to the log printed from.
implementation 'com.github.dhl:linkablelog:0.4'import androidx.appcompat.app.AppCompatActivity
import kotlinx.android.synthetic.main.activity_main.*
import com.github.dhl.linkablelog.Log
class MainActivity : AppCompatActivity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)
    }
    private fun printSampleLog() {
        Log.d("SimpleLog","Click here to see code")
    }
}