package com.github.simonpercic.oklogexample;
import android.app.Application;
import timber.log.Timber;
/**
* @author Simon Percic <a href="https://github.com/simonpercic">https://github.com/simonpercic</a>
*/
public class App extends Application {
@Override public void onCreate() {
super.onCreate();
// remember to never log in production in your apps!
Timber.plant(new Timber.DebugTree());
}
}