Disable MagicalRecord error messages and warnings

后端 未结 4 2315
说谎
说谎 2021-02-19 22:11

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

4条回答
  •  情歌与酒
    2021-02-19 22:50

    swift

    MagicalRecord.setLoggingLevel(MagicalRecordLoggingLevel.Off)
    

    objC

    [MagicalRecord setLoggingLevel:MagicalRecordLogLevelOff];
    

    put it in your AppDelegate when the application didFinishLaunchingWithOptions

提交回复
热议问题