I am trying to find what code is generating this message on Xcode console when debugging a Mac app on MacOS Sonoma:
Calling request access completion handler with no access because this method is deprecated and the app is not a legacy app.
I tried to break on NSLog but this message apparently is not logged with NSLog because when I break on NSLog none of the messages returned have this text.
Does anybody have an idea how could I debug this?
Things I've tried:
Break on NSLog
Break on Swift Error
Break on All Objective-C exceptions
None of these work, as no breakpoint is hit when this message comes up.