Skip to content

Swift Package to parse .xcactivitylog file to provide information about the build time of methods.

License

Notifications You must be signed in to change notification settings

KS1019/SwiftyXcActivityLog

Repository files navigation

SwiftyXcActivityLog

Swift Test Create Release

Install

You can install this package via Swift Package.

Simply add

.package(name: "SwiftyXcActivityLog", url: "https://github.com/KS1019/SwiftyXcActivityLog", .upToNextMajor(from: "0.0.5"))

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

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 }

Alternatives

About

Swift Package to parse .xcactivitylog file to provide information about the build time of methods.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages