In my NSViewController I placed a print(_:) method, but it's not being called when I hit print. Instead, the print is being captured by the current NSTextField that I'm in. How do I force the print call to go into the view controller? I defined it like so:
@objc func print(sender: AnyObject) {
}