CoreData: annotation: PostSaveMaintenance: incremental_vacuum with freelist_count - 52 and pages_to_free 10

Viewed 1003

I am getting this warning. Can anyone help me understand what exactly this means ?

CoreData: annotation: PostSaveMaintenance: incremental_vacuum with freelist_count - 52 and pages_to_free 10
1 Answers

This message is due to Core Data undergoing a VACUUM operation in order to free up space in the Sqlite database. More information here. It is normal to see this message.

Related