mpcjanssen
12/29/2015, 12:20 AMimport android.util.Log
public object Logger {
public fun info (tag: String, message : String, vararg items: Any?) = {
Log.i(tag, message + items.joinToString(", "))
}
}
// from Java
<http://Logger.INSTANCE.info|Logger.INSTANCE.info>(TAG,"Text");
anyone has seen this before?
a breakpoint on the function prototype is hit. A breakpoint on the Log.i line is never hit