Skip to main content
Try Cobo WaaS Skill in your AI coding assistant (Claude Code, Cursor, etc.). Describe your needs in natural language to auto-generate production-ready SDK code and debug faster 🚀
public func setLogger(completion: @escaping (String?, String?) -> Void)
setLogger { level, message in
    print("Log Level: \(level), Log Message: \(message)")
}

Parameters

logCallback
function
A callback function that receives log level and log message parameters to monitor the logger activity.