import Foundation

 

class DebugLogTool: NSObject {

    private static let isDebug = true

    

    /**

     *  自定义log打印

     */

    static func debugLog(item: Any){

        if isDebug {

            print(item)

        }

    }

}

相关文章:

  • 2022-12-23
  • 2021-04-12
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-21
  • 2021-09-01
  • 2021-07-27
猜你喜欢
  • 2021-12-07
  • 2021-06-24
  • 2022-12-23
  • 2022-12-23
  • 2022-02-01
  • 2021-12-07
  • 2022-12-23
相关资源
相似解决方案