ffiCustomLog

fun ffiCustomLog(cLogLevel: CLogLevel_t, msg: String)

Deprecated

Use DittoLog to write messages to the Ditto log.

Replace with

import live.ditto.DittoLog
DittoLog.i("TAG", msg)

Sends a single message to the log at the given log level.

Parameters

cLogLevel

The log level to send the message at.

msg

The message to send.