Latest | 3.0.0 |
---|---|
Homepage | https://github.com/Meniny/Logify-in-Swift |
License | MIT |
Platforms | ios 8.0, osx 10.10 |
Frameworks | Foundation |
Authors |
Introduction
What’s this?
Logify is an Android like logger framework written in Swift.
- iOS 8.0+
- macOS 10.10+
- Xcode 8 with Swift 3
Installation
CocoaPods
pod 'Logify'
Contribution
You are welcome to fork and submit pull requests.
License
Logify is open-sourced software, licensed under the MIT
license.
Usage
Log.i("Hello world")
let dic = ["key": "value"]
Log.d(dic)
Log.DISABLED = true
Log.e("ERROR!!!")
Latest podspec
{ "name": "Logify", "version": "3.0.0", "summary": "An Android like logger framework written in Swift.", "description": "Logify is a n Android like logger framework written in Swift."", "homepage": "https://github.com/Meniny/Logify-in-Swift", "license": "MIT", "authors": { "Meniny": "[email protected]" }, "source": { "git": "https://github.com/Meniny/Logify-in-Swift.git", "tag": "3.0.0" }, "social_media_url": "http://meniny.cn/", "platforms": { "ios": "8.0", "osx": "10.10" }, "ios": { "source_files": [ "Logify/LogifyIOS/**/*{.h}", "Logify/Logify/**/*{.swift}" ], "public_header_files": "Logify/LogifyIOS/**/*{.h}" }, "osx": { "source_files": [ "Logify/LogifyOSX/**/*{.h}", "Logify/Logify/**/*{.swift}" ], "public_header_files": "Logify/LogifyOSX/**/*{.h}" }, "frameworks": "Foundation", "pushed_with_swift_version": "3.0" }
Thu, 11 May 2017 15:20:23 +0000