Swift 配置Print

一 OC中配置NSLog输出

//////debug日志输出
#ifdef DEBUG
#define NSLog(...) NSLog(__VA_ARGS__)
#else
#define NSLog(...) {}
#endif

二 swift中配置Print输出

  • project中配置Build Settings
  • 搜索Other Swift 找到Other Swift Flags

如图配置

Swift 配置Print_第1张图片

然后在AppDelegate.swift中加入方法

func Log(_ message: T, file: String = #file, funcName: String = #function, lineNum: Int = #line) {
    #if DEBUG
        let fileName: String = (file as NSString).lastPathComponent
        print("***********Log************\n【\(fileName):\(lineNum)】->>   \(message)")
    #endif
}

然后可以切换 DebugRelease 查看输出信息啦~

你可能感兴趣的:(Swift 配置Print)