forked from zelo72/mastodon-ios
21 lines
340 B
Swift
21 lines
340 B
Swift
|
//
|
||
|
// OSLog.swift
|
||
|
// Mastodon
|
||
|
//
|
||
|
// Created by Cirno MainasuK on 2021/1/29
|
||
|
//
|
||
|
|
||
|
import os
|
||
|
import Foundation
|
||
|
import CommonOSLog
|
||
|
|
||
|
extension OSLog {
|
||
|
static let api: OSLog = {
|
||
|
#if DEBUG
|
||
|
return OSLog(subsystem: OSLog.subsystem + ".api", category: "api")
|
||
|
#else
|
||
|
return OSLog.disabled
|
||
|
#endif
|
||
|
}()
|
||
|
}
|