Dlog

作者: Johnson_9d92 | 来源:发表于2022-05-20 21:15 被阅读0次
import Foundation
public func Dlog<T>(_ message: T, fileName: String = #file, methodName: String =  #function, lineNumber: Int = #line)
{
    #if DEBUG
    
    let str = (fileName as NSString).pathComponents.last!.replacingOccurrences(of: "swift", with: "")
    print(">>> \(str)\(methodName)[\(lineNumber)]: \(message)")
    #endif
}

相关文章

  • DLog

    ///全局函数func DLog(_ message:T,file:String = #file,funcN...

  • DLog

    在iOS开发中,很大一部分时间我们通过控制器的Log信息调试我们的项目,很多情况下我们会对这行Log信息所处的文件...

  • Dlog

  • DLOG2

    我打算叫diarylog……DLOG,有没有很nice?重新发一下dlog1哒内容……补起来,呦呦呦~发了张照片…...

  • 调试 - DLog

    iOS开发中,常常需要打印日志Debug程序,NSLog输出过于单一常常不能满足我们的需求,DLog 能输出行号、...

  • 期末作业

    EH17-Quantum algorithms for DLOG and Factorin 读后总结

  • 日志调试

    //OC版 #ifdef DEBUG #define DLog(fmt, ...) NSLog((@"<%s : ...

  • iOS Bug 调试

    1.打印log调试 #ifdef DEBUG # define DLog(fmt, ...) NSLog((@"[...

  • dlog1

    前两天看了没有阳光的日子,是从香港人的视角看待这一历史事件的,里面谈及了侯孝贤的悲情城市,还采访了很多海外华人。他...

  • Swift Constant File

    //Update 0729 `dlog` 更新:[http://www.jianshu.com/p/e65d7c6...

网友评论

      本文标题:Dlog

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