DebugLogger.swift
416 Bytes
//
// DebugLogger.swift
// Runner
//
// Created by 权海 on 2026/6/16.
//
import Foundation
//import os
class DebugLogger{
// let logger = Logger(subsystem: Bundle.main.bundleIdentifier ?? "App", category: "HealthKit")
static func debugLog(_ message: String) {
#if DEBUG || CI_ENV
print(message)
#endif
}
static func log(desc: String){
print(desc)
}
}