I have just recently started using lumberjack.
I was checking out the logging framework.
Following is the thing i tried out
NSLog(@"Logger Iniit Done");
DDLogVerbose(@"Hello Done int");
DDLogVerbose(@"Broken sprocket detected!");
DDLogError(@"Broken sprocket detected!");
and following was the output
2011-12-18 10:21:29.644 TestingLogging[3323:10103] Logger Iniit Done
2011-12-18 10:21:29:646 TestingLogging[3323:10103] Hello Done int
2011-12-18 10:21:29:653 TestingLogging[3323:10103] Broken sprocket
detected!
2011-12-18 10:21:29:653 TestingLogging[3323:10103] Broken sprocket
detected!
I was looking for output like this which tells me more about the type
of message
2011-12-18 10:21:29:646 TestingLogging[3323:10103] INFO Hello Done int
2011-12-18 10:21:29:653 TestingLogging[3323:10103] INFO Broken
sprocket detected!
2011-12-18 10:21:29:653 TestingLogging[3323:10103] ERROR Broken
sprocket detected!
wanted to know if there was a easy way of changing this.
I looked through the wiki ,i think CustomFormatter will be the way.
But wanted to know if there was a easy way to do so.
Thanks,
Sohil
--You received this message because you are subscribed to the Google Groups "CocoaLumberjack" group.To post to this group, send email to cocoalu...@googlegroups.com.To unsubscribe from this group, send email to cocoalumberja...@googlegroups.com.For more options, visit this group at http://groups.google.com/group/cocoalumberjack?hl=en.