Reputation: 4308
I´m using CoreData with a sqlite store. Is it possible to log the sqlite queries CoreData sends to the DB-layer.
Thanks
Upvotes: 0
Views: 546
Reputation: 6082
Pass the following as an argument to the application to log to stderr the actual SQL sent to SQLite:
-com.apple.CoreData.SQLDebug 1
Upvotes: 1