美文网首页iOS
Swift5-日志打印 #file #function #lin

Swift5-日志打印 #file #function #lin

作者: Jesscia_Liu | 来源:发表于2022-07-22 11:23 被阅读0次

    一、#file #function #line讲解

    1.swift

    swift.jpg

    2.oc oc.jpg

    二、简单日志打印类

    import Cocoa
    import Foundation
    
    class Log{
        
        public static func verbose<T>(_ message: T, file: String = #file, function: String = #function, line: Int = #line) {
            #if DEBUG
                let fileName = (file as NSString).lastPathComponent
                print("------> 🟪 [VERBOSE] \(fileName):\(line) \(function) || \(message) 🟪")
            #endif
        }
        
        public static func debug<T>(_ message: T, file: String = #file, function: String = #function, line: Int = #line) {
            #if DEBUG
                let fileName = (file as NSString).lastPathComponent
                let dformatter = DateFormatter()
                dformatter.dateFormat = "yyyy-MM-dd HH:mm:ss"
                let dateStr = dformatter.string(from: Date())
                print("------> 🟩 [DEBUG] \(dateStr) \(fileName):\(line) \(function) || \(message) 🟩")
            #endif
        }
        
        public static func info<T>(_ message: T, file: String = #file, function: String = #function, line: Int = #line) {
            #if DEBUG
                let fileName = (file as NSString).lastPathComponent
                let dformatter = DateFormatter()
                dformatter.dateFormat = "yyyy-MM-dd HH:mm:ss"
                let dateStr = dformatter.string(from: Date())
                print("------> 🟦 [INFO] \(dateStr) \(fileName):\(line) \(function) || \(message) 🟦")
            #endif
        }
        
        public static func warning<T>(_ message: T, file: String = #file, function: String = #function, line: Int = #line) {
            #if DEBUG
                let fileName = (file as NSString).lastPathComponent
                let dformatter = DateFormatter()
                dformatter.dateFormat = "yyyy-MM-dd HH:mm:ss"
                let dateStr = dformatter.string(from: Date())
                print("------> 🟨 [WARNING] \(dateStr) \(fileName):\(line) \(function) || \(message) 🟨")
            #endif
        }
        
        public static func error<T>(_ message: T, file: String = #file, function: String = #function, line: Int = #line) {
            #if DEBUG
                let fileName = (file as NSString).lastPathComponent
                let dformatter = DateFormatter()
                dformatter.dateFormat = "yyyy-MM-dd HH:mm:ss"
                let dateStr = dformatter.string(from: Date())
                print("------> 🟥 [ERROR] \(dateStr) \(fileName):\(line) \(function) || \(message) 🟥")
            #endif
        }
    }
    
    
    

    相关文章

      网友评论

        本文标题:Swift5-日志打印 #file #function #lin

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