This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
private let subsystem = "<ENTER-YOUR-SUBSYSTEM-STRING-HERE>" | |
// MARK: - Protocol | |
protocol LogProducer { | |
func debug(_ message: StaticString, _ messageArguments: CVarArg...) | |
func info(_ message: StaticString, _ messageArguments: CVarArg...) | |
func warn(_ message: StaticString, _ messageArguments: CVarArg...) |
OlderNewer