Veloria/Veloria/Base/Define/VPDefine.swift
2025-05-20 08:53:21 +08:00

20 lines
444 B
Swift

//
// VPDefine.swift
// Veloria
//
// Created by on 2025/5/19.
//
import UIKit
//MARK: ------- ----------
#if DEBUG
public func vpLog(message:Any? , file: String = #file, function: String = #function, line: Int = #line) {
print("\n\(Date(timeIntervalSinceNow: 8 * 60 * 60)) \(file.components(separatedBy: "/").last ?? "") \(function) \(line): \(message ?? "")")
}
#else
public func vpLog(message:Any?) { }
#endif