我曾经将Lumberjack logger与Objective C一起使用,并且我喜欢它。现在,我开始学习Swift,并且无法在其中使用我最喜欢的记录器。有人可以一步一步地写我该怎么做吗?我试图在这里找到一些东西,但是在Lumberjack 2.0发行之前,所有主题都带有自定义包装的主题。
我做了什么:
而且我不知道下一步该怎么做?因为在ObjC中,我有宏:static const int ddLogLevel = LOG_LEVEL_INFO;否则静态const int ddLogLevel = LOG_LEVEL_VERBOSE;而且我的日志级别取决于编译标志...我可以在这里这样做吗?
以及如何在代码中使用Lumberjack?谢谢!
最佳答案
请引用GitHub上的以下问题,因为它说明了在集成Swift框架时如何解决问题。另外,您可以引用下面的示例(摘自Issue线程),这非常有帮助。
https://github.com/CocoaLumberjack/CocoaLumberjack/issues/405
@UIApplicationMain class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
// Override point for customization after application launch.
let formatter = Formatter()
DDTTYLogger.sharedInstance().logFormatter = formatter
DDLog.addLogger(DDTTYLogger.sharedInstance())
DDLogVerbose("Verbose");
DDLogDebug("Debug");
DDLogInfo("Info");
DDLogWarn("Warn");
DDLogError("Error");
printSomething()
defaultDebugLevel = ddloglevel
printSomething()
return true
}
}
关于ios - 带有Swift的Lumberjack 2.0记录器,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29315342/