Skip to content

1.3.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 31 May 12:23
· 36 commits to main since this release

What's Changed

  • Added ability to customize hang threshold by @pilot34 in #9

To customize hang threshold you can implement method in your HangsReceiver:

public func fatalHangReceived(info: HangInfo) {
    // ...
}

public var hangThreshold: TimeInterval {
    return 5
}

Default value is 2 seconds.

Full Changelog: 1.2.7...1.3.0