Skip to content

Instantly share code, notes, and snippets.

@bill350
Last active July 26, 2018 12:40
Show Gist options
  • Save bill350/767d40d3cecb62e9d9c1c6450ca288b2 to your computer and use it in GitHub Desktop.
Save bill350/767d40d3cecb62e9d9c1c6450ca288b2 to your computer and use it in GitHub Desktop.
extension SwiftyBeaver {
// ...
static func addOSLogDestination() {
#if DEBUG
let level: SwiftyBeaver.Level = .verbose
#else
let level: SwiftyBeaver.Level = .error
#endif
let osLogDestination = OSLogDestination(level: level)
logger.addDestination(osLogDestination)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment