You must create separate templates to make them work correctly.
Here is a step-by-step guide:
First, copy and paste the AndroidLog templates into Kotlin (just select them and use CMD + C, CMD + V (or Ctrl + C, Ctrl + V) Secondly, you must configure them manually: 1. logd (and others ) Select the logd element and click "Edit Variables",

Change the expression to: kotlinMethodName()

Also, remove ;from the end of the template as it is not needed in Kotlin.
Now your method name will be displayed correctly
logt
This is a little trickier.
Solution 1 TAG = class name.
private val TAG = "$ className $"
- Change Variables → Expression:
groovyScript ("_ 1.take (Math.min (23, _1.length ());", kotlinClassName ())
Solution 2 TAG = file name (can be used inside Companion)
companion object {
private const val TAG = "$className$"
}