1234567891011121314151617181920 |
- //
- // OtherGeneralMethod.swift
- // HCQuanfangtong
- //
- // Created by Apple on 2021/12/24.
- // Copyright © 2021 Jyp. All rights reserved.
- //
- import Foundation
- //其他通用方法
- //MARK: debug模式下的打印
- func DLog<T>(_ message : T, file : String = #file, funcName : String = #function, lineNum : Int = #line) {
- #if DEBUG
- let fileName = (file as NSString).lastPathComponent
- print("\(fileName):(\(lineNum))-\(message)")
- #endif
- }
|