I discovered a multithreading mistake in my use of NSManagedObjects recently and was surprised that I wasn't alerted to this during development, since I had -com.apple.CoreData.ConcurrencyDebug 1
set under "arguments passed on launch" for my macOS and iOS FileProvider extensions. I confirmed that the expected log stating CoreData: annotation: Core Data multi-threading assertions enabled.
is NOT present when running these targets (but does appear as expected on my main macOS and iOS applications).
Can anyone advise me on how to get this concurrency debugging functionality to work on my FileProvider extension(s)?
Thanks