OSLog.swift 340 B

123456789101112131415161718192021
  1. //
  2. // OSLog.swift
  3. // Mastodon
  4. //
  5. // Created by Cirno MainasuK on 2021/1/29
  6. //
  7. import os
  8. import Foundation
  9. import CommonOSLog
  10. extension OSLog {
  11. static let api: OSLog = {
  12. #if DEBUG
  13. return OSLog(subsystem: OSLog.subsystem + ".api", category: "api")
  14. #else
  15. return OSLog.disabled
  16. #endif
  17. }()
  18. }