Files
2026-07-13 13:33:03 +08:00

30 lines
715 B
Swift
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//
// ModelDownloadLogger.swift
// MNNLLMiOS
//
// Created by 游薪渝(揽清) on 2025/1/3.
//
import Foundation
import os.log
public enum ModelDownloadLogger {
static var isEnabled: Bool = false
private static let logger = Logger(subsystem: Bundle.main.bundleIdentifier ?? "ModelScope", category: "Download")
static func debug(_ message: String) {
guard isEnabled else { return }
logger.debug("📥 \(message)")
}
static func info(_ message: String) {
guard isEnabled else { return }
logger.info("\(message)")
}
static func error(_ message: String) {
guard isEnabled else { return }
logger.error("❌ \(message)")
}
}