美文网首页
Swift中自定义Log

Swift中自定义Log

作者: 飞飞hang | 来源:发表于2016-01-04 11:19 被阅读0次

    OC系统会自定添加宏,而swift没有,如果我们想暴力调试可以进行以下操作,一般我们把这个函数写在AppDelegate.swift文件中,供其他文件调用

    func HFLog<T>(message: T, fileName: String = __FILE__, methodName: String =  __FUNCTION__, lineNumber: Int = __LINE__)
    {
        #if DEBUG
        let str : String = (fileName as NSString).pathComponents.last!.stringByReplacingOccurrencesOfString("swift", withString: "")
        print("\(str)\(methodName)[\(lineNumber)]:\(message)")
        #endif
    }
    

    还要配置以下宏


    Snip20160104_18.png

    假如我在一个函数中打印这个"我是靓仔"

     func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
           
            HFLog("我是靓仔")
            return true
        }
    

    最终会输出

    AppDelegate.application(_:didFinishLaunchingWithOptions:)[19]:我是靓仔
    

    注:依次是类名.方法名.行号.内容.

    相关文章

      网友评论

          本文标题:Swift中自定义Log

          本文链接:https://www.haomeiwen.com/subject/kqfahttx.html