Simple logging library for iOS written in Swift
- Inferred log message tags
- Swift Package Manager/Carthage/CocoaPods integration
- Highly extensible
- Logging to multiple targets/destination at the same time
- Console logging out of the box via ConsoleTarget
- File logging out of the box via FileTarget
- Pure Swift 5
- Optional file header for each file
- Automatic file archive based on size or time span
Once Swift package set up, add the following to your Package.swift
:
dependencies: [
.package(url: "https://github.com/nakkht/logr.git", exact: "0.11.0")
]
In your AppDelegate.swift
file add:
import Logr
At the beginning of func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool
configure logr service with wanted targets:
LogrService.init(with: Config(ConsoleTarget(), FileTarget()))
For more serious configuration in production, it is recommended to ommit ConsoleTarget
. For example:
#if DEBUG
static let targets: [Target] = [ConsoleTarget(), FileTarget()]
#else
static let targets: [Target] = [FileTarget()]
#endif
static let config = Config(targets: targets)
LogrService.init(with: config)
The set targets will be used across the whole application.
To log messages, simply create Logr
instance in class initializer and start logging. For example:
import Logr
class ViewController: UIViewController {
private let logr = Logr()
func logDebug() {
logr.debug("debug message to be logged")
}
}
Demo project can be access by opening Demo.workspace in Demo sub-folder.
- Documentation generated with jazzy. Hosted by GitHub Pages.
- Architecture document available in project wiki
This repository is under the Apache v2.0 license. Find it here.
Copyright 2021 Paulius Gudonis
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.