Skip to content

Ekhoo/WEDebugger

Repository files navigation

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.