9 lines
172 B
Swift
9 lines
172 B
Swift
import Foundation
|
|
import os
|
|
|
|
public extension Logger {
|
|
init(category: String) {
|
|
self.init(subsystem: Bundle.main.bundleIdentifier!, category: category)
|
|
}
|
|
}
|