I have a project using Cocoalumberjack 2.x as Cocoapod. The project uses Obj-C mostly, but also a few Swift classes.
I allways get these warnings:
Disable legacy macros by importing CocoaLumberjack.h or DDLogMacros.h instead of DDLog.h or add `#define DD_LEGACY_MACROS 0` before importing DDLog.h.
In the main project I don't have a file that imports DDLog.h. Only CocoaLumberjack in the Pods import DDLog.h.
I also get the DDLogError macro redefined
, DDLogInfo macro redefined
etc warning.
What's the problem leading to this?