Hi! I'm trying to use this amazing framework but I'm getting some errors, how can I solve it?I

Same problem. Not present in 1.9.2. Just in latest version.
I also get this in 2.0.0beta. FWIW, I installed it as a pod.
Ensure you do a
#import "CocoaLumberjack.h"
instead of a
#import "DDLog.h"
The DDLogError is defined in "DDLogMacros.h". "CocoaLumberjack.h" will load "DDLogMacros.h" together with "DDLog.h".
Update the project README and moved the relevant notes to the top:
https://github.com/CocoaLumberjack/CocoaLumberjack/blob/master/README.md#cocoalumberjac-2-pre-release-notes
I was having this issue as well. I had to make sure my project's prefix.pch file #import(ed)
I got this problem when I followed the "GettingStarted.md" file in the Documentation. You might want to update it.
The documentation is updated
Also feel free to make pull request for documentation files.
Importing "CocoaLumberjack.h" worked for me
Most helpful comment
Ensure you do a
instead of a
The DDLogError is defined in "DDLogMacros.h". "CocoaLumberjack.h" will load "DDLogMacros.h" together with "DDLog.h".