import Foundation
class DebugLogTool: NSObject {
private static let isDebug = true
/**
* 自定义log打印
*/
static func debugLog(item: Any){
if isDebug {
print(item)
}