log static method
Implementation
static void log(
CkTransportConfig config,
String message, {
String? tag,
bool isError = false,
}) {
if (!config.enableDebugLogs) return;
if (isError) {
CkLogger.apiError(message, tag: tag);
} else {
CkLogger.apiDebug(message, tag: tag);
}
}