Skip to content

Instantly share code, notes, and snippets.

@hbruno
Created June 25, 2019 21:09
Show Gist options
  • Save hbruno/2aef9844240d73c5d68a0fd2d0b63320 to your computer and use it in GitHub Desktop.
Save hbruno/2aef9844240d73c5d68a0fd2d0b63320 to your computer and use it in GitHub Desktop.
extension OSLog {
private static var subsystem = Bundle.main.bundleIdentifier!
static let ui = OSLog(subsystem: subsystem, category: "UI")
static let network = OSLog(subsystem: subsystem, category: "Network")
}
os_log("Contact selected", log: .ui)
os_log("HTTP response: %@", log: .network, responseCode)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment