I just started using MagicalRecord, and this might be a stupid question, but it\'s really bothering me... I am using MagicalRecord with sqlite, and when I initiate MagicalRecord
In case you use pods add preprocessor macro MR_ENABLE_ACTIVE_RECORD_LOGGING=0 to magical record project like this:
swift
MagicalRecord.setLoggingLevel(MagicalRecordLoggingLevel.Off)
objC
[MagicalRecord setLoggingLevel:MagicalRecordLogLevelOff];
put it in your AppDelegate when the application didFinishLaunchingWithOptions
It looks like you still have errors to fix. I suggest not ignoring those during development...
found it. add #define MR_ENABLE_ACTIVE_RECORD_LOGGING 0
in your Prefix.pch file before #import "CoreData+MagicalRecord.h"