Alternatively, you can add this package via Xcode.
Usage
In order to access to the log, you write
let log = XcActivityLog(productName: productName)
// Use this when you want to deal with an array of Execution struct
guard let executions = log.asExecutions() else { return }
// Use this when you want to deal with an array of String
guard let strArray = log.asStringArray() else { return }
SwiftyXcActivityLog
Install
You can install this package via Swift Package.
Simply add
to your dependecies in your Package.swift.
Alternatively, you can add this package via Xcode.
Usage
In order to access to the log, you write
Alternatives