I have a mixed Swift and Objective-C project (one view controller is in objective C). When I try to print some debug output from that view controller (ie in the .m file using NSLog) I do not see any output.
My swift prints are just fine.
I made a new objective-c project and did some NSLogging, that works fine.
I added this code to my appdelegate (swift), just to immediately test: NSLog("Testing 1 2 3") print("Is this thing on?") and I also do not see the NSLog output, but I do see output from the print statement.
What madness is this?