10 lines
494 B
Swift
10 lines
494 B
Swift
import os
|
|
|
|
public enum Log {
|
|
public static let spool = Logger(subsystem: "ai.flowmaster.shotdeck", category: "spool")
|
|
public static let pdf = Logger(subsystem: "ai.flowmaster.shotdeck", category: "pdf")
|
|
public static let capture = Logger(subsystem: "ai.flowmaster.shotdeck", category: "capture")
|
|
public static let returns = Logger(subsystem: "ai.flowmaster.shotdeck", category: "returns")
|
|
public static let ui = Logger(subsystem: "ai.flowmaster.shotdeck", category: "ui")
|
|
}
|