Ekhoo / WEDebugger

A light weight debugger tool

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

WEDebugger

Version License Platform

Simple and light weight debugger tool.

Demo

WEDebugger WEDebugger

Installation

CocoaPods

WEDebugger is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "WEDebugger", '~> 0.0.3'

Usage

Log

The library will log following this format: {time}: [{class} {method}] => ({file}:{line}): {text}

#import "WEDebugger.h"

- (void)loadView {
    WELog(@"Hello");
}

Display logs

#import "WEDebuggerViewController.h"

- (void)viewDidAppear:(BOOL)animated {
    [super viewDidAppear:animated]
    
    [self.navigationController pushViewController:[WEDebuggerViewController new] animated:YES];
}

Close logs

Swipe to the right in order to close the logs controller.

Author

Lucas Ortis:

License

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

About

A light weight debugger tool

License:MIT License


Languages

Language:Objective-C 97.1%Language:Ruby 2.9%