Skip to content

Instantly share code, notes, and snippets.

@4np
Created April 4, 2019 08:48
Show Gist options
  • Save 4np/85c115b805a97e2189266d20c8c2a593 to your computer and use it in GitHub Desktop.
Save 4np/85c115b805a97e2189266d20c8c2a593 to your computer and use it in GitHub Desktop.
Debug notification center notifications.
import Foundation
import os.log
NotificationCenter.default.addObserver(forName: nil, object: nil, queue: nil) { (notification) in
os_log("Received notification: %@", log: .default, type: .debug, notification.name.rawValue)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment