func log()

in Sources/TwitterTextEditor/Logger.swift [101:113]


func log(type: LogType,
         file: StaticString = #file,
         line: Int = #line,
         function: StaticString = #function,
         _ format: String? = nil,
         _ arguments: CVarArg...)
{
    log(type: type,
        file: file,
        line: line,
        function: function,
        format.map { String(format: $0, arguments: arguments) })
}