BLLogger
一个 Swift dLog 实现版本。
说实话,这非常简单,可能直接复制粘贴到您的项目中比添加另一个依赖项更方便。
您可以在这里找到代码片段。
Specs
- iOS 9+
- watchOS 3+
- tvOS 9+
- macOS 10.11+
- Swift 3.3+
使用方法
func someFunction() {
dLog("This message will appear on your console when you're in debug mode")
aLog("This message will always appear on your console")
}
配置
BLLogger通过使用DEBUG
标志来工作。自Xcode 8及以上版本,BLLogger无需配置即可正常运行。
安装
Cocoapods
pod 'BLLogger', '~> 1.0'
然后,在需要的地方导入import BLLogger
。
Carthage
github "BellAppLab/BLLogger" ~> 1.0
然后,在需要的地方导入import BLLogger
。
Swift包管理器
dependencies: [
.package(url: "https://github.com/BellAppLab/BLLogger", from: "1.0")
]
然后,在需要的地方导入import BLLogger
。
Git子模块
cd toYourProjectsFolder
git submodule add -b submodule --name BLLogger https://github.com/BellAppLab/BLLogger.git
然后将BLLogger
文件夹拖入您的Xcode项目。
作者
Bell App Lab, [email protected]
致谢
标志图像 由 Ronald Cortez 来自 Noun Project
许可协议
BLLogger 在 MIT 许可证下可用。更多信息请参阅 LICENSE 文件。