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). The problem is that this library uses NSLog() and none if its output ends up on my log file.
Is there a way to capture NSLog's output and redirect it to CocoaLumberjack's? Or if that's not possible, just "rewrite" NSLog() so that it actually executes DDLogVerbose()?