Swift中的打印日志的配置
/** * 定义日志打印输出方法 * * message: 具体的输出内容 * file: 项目名称 * method: 方法名称 * line: 第几行代码 */
func LSLLog<T>(message: T,file: String = __FILE__,method: String = __FUNCTION__,line: Int = __LINE__){
#if DEBUG
print("\(method)[\(line)]:\(message)")
#endif
}
@H_502_12@ 原文链接:https://www.f2er.com/swift/325651.html