cocoalumberjack Questions
2
Solved
I want to replace NSLog with CocoaLumberjack, and I follow the GettingStarted, then add
DDLogError(@"This is an error.");
DDLogWarn(@"This is a warning.");
DDLogInfo(@"This is just a message.");
...
Decentralization asked 30/5, 2013 at 9:15
12
Solved
I'm using CocoaLumberjack in an iPhone project, to log some information.
I've followed the Getting started guide, and everything works fine, but there is one thing that bugs me: there doesn't seem...
Monasticism asked 25/2, 2011 at 13:56
9
Solved
I am Using cocoaLumberjack logging framework for iOS logging.
For storing logs in a file I used this code.
DDFileLogger* fileLogger = [[DDFileLogger alloc] init];
fileLogger.rollingFrequency = 60 ...
Squadron asked 20/6, 2011 at 13:2
4
Solved
I'm new to CocoaLumberjack and I get it to work on Swift following this. If I try to print logs doing:
DDLogDebug("Debug")
DDLogInfo("Info")
DDLogWarn("Warning")
DDLogVerbose("Verbose")
DDLogError...
Dialyze asked 14/7, 2015 at 19:44
0
Since moving to Xcode 9 I observe a strange behaviour while resuming from a breakpoint on Simulator.
My app uses multiple threads significantly, and some breakpoints are set in the code on differe...
Sanmiguel asked 11/10, 2017 at 14:13
3
Solved
I'm trying to install Cocoalumberjack as a pod and am getting this error:
The ProjectName [Release] target overrides the SWIFT_VERSION build
setting defined in `Pods/Target Support
Files/Pods-...
Harpy asked 23/9, 2016 at 18:41
4
Solved
I'm trying to configure cocoalumberjack and when I've added ddLogLevel set to LOG_LEVEL_VERBOSE XCode throws "use of undeclared identifier" error. Why is that? How to avoid?
Feinstein asked 4/8, 2014 at 6:25
3
Solved
Many iOS developers have found the Cocoa Lumberjack Logging framework to fill a need that simple NSLog statements don't. It's reminiscent of Log4J in the Java world.
In any event, I have written m...
Necessarian asked 1/1, 2012 at 1:22
2
I used to use Lumberjack logger with Objective C and I like it. Now I start learning Swift and I cannot use my favourite logger there. Could somebody write step-by-step how I can do it please? I tr...
Vicarage asked 28/3, 2015 at 8:56
1
I'm hitting a race-condition in my app, where all or all but 1 threads get stuck on syscall_thread_switch whenever I pause debugging. It reproduces much more often on the simulator, but also on the...
Staphylo asked 14/4, 2015 at 10:13
3
Solved
I started to build an IOS app with the new programming language Swift. I managed to use CocoaPods and was able to successfully create the DDTTYLogger with my CustomLoggerFormatter (Objective-C) in ...
Kyser asked 10/6, 2014 at 15:3
3
Solved
I am trying to find a way for Cocoa Lumberjack to show me file and line number.
After looking through the docs and some Googling, I found no easy way to do this.
Is there any way to do this witho...
Mattson asked 2/10, 2013 at 13:18
1
In the summary of CocoaLumberjack it is mentioned that "Lumberjack is Powerful", and then "Want more? Create your own loggers (it's easy) and send your log statements over the network."
So, I wonde...
Jammie asked 13/8, 2014 at 9:37
3
Solved
First of all I have been reading some threads about CocoaLumberjack and I have not been able to find solution to this question:
I'm using CocoaLumberjack to Log in my app. But I want to Log the ap...
Dashboard asked 27/2, 2014 at 16:43
2
I'm using CocoaLumberjack for all the logging in my app. Using this I can log straight to a file by using DDLogVerbose(...) or any of the available variants.
I'm also using fmdb (SQLite wrapper). ...
Grosswardein asked 22/8, 2012 at 17:31
2
I am using this CocoaLumberjack framework to log all my messages in Objective-C design. Now I want to log all errors to one file and all other messages to another file. I know I could use formatter...
Rocketry asked 16/10, 2012 at 19:5
2
Solved
I'm relatively new to iOS development, and am trying to implement CocoaLumberjack logging.
I downloaded the latest source from https://github.com/robbiehanson/CocoaLumberjack, have included the re...
Diabetic asked 11/11, 2011 at 23:47
1
© 2022 - 2024 — McMap. All rights reserved.