JaviSoto / Watchdog

Class for logging excessive blocking on the main thread

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Watchdog

Class for logging excessive blocking on the main thread. It watches the main thread and checks if it doesn’t get blocked for more than defined threshold. You can also inspect which part of your code is blocking the main thread.

👮 Main thread was blocked for 1.25s 👮

Requirements

  • iOS 8.0+, tvOS 9.0+ or OS X 10.9+
  • Xcode 7.0 or above

Installation

Carthage

Add the following to your Cartfile:

github "wojteklu/Watchdog"

Then run carthage update.

Follow the current instructions in Carthage's README for up to date installation instructions.

CocoaPods

Add the following to your Podfile:

pod 'Watchdog'

You will also need to make sure you're opting into using frameworks:

use_frameworks!

Then run pod install with CocoaPods 0.36 or newer.

Manually

Manually add the file into your Xcode project. Slightly simpler, but updates are also manual.

Usage

Simply, just instantiate Watchdog with number of seconds that must pass to consider the main thread blocked. Additionally you can enable strictMode that stops the execution whenever the threshold is reached. This way, you can inspect which part of your code is blocking the main thread.

let watchdog = Watchdog(threshold: 0.4, strictMode: true)

Don't forget to retain Watchdog somewhere or it will get released when it goes out of scope.

Author

Wojtek Lukaszuk @wojteklu

License

Watchdog is available under the MIT license. See the LICENSE file for more info.

About

Class for logging excessive blocking on the main thread

License:MIT License


Languages

Language:Swift 69.4%Language:Ruby 20.2%Language:Objective-C 10.4%