Switch the logging framework

This commit is contained in:
Bradlee Speice
2015-04-05 21:31:09 -04:00
parent fdec1e3ed8
commit 3bb9d61ff9
5 changed files with 17 additions and 7 deletions

View File

@ -1,5 +1,8 @@
package org.bspeice.minimalbible;
import com.orhanobut.logger.LogLevel;
import com.orhanobut.logger.Logger;
/**
* Create a MinimalBible application that we can extend from the main release
* Currently it's not doing much, but would allow for shenanigans during testing in the future
@ -15,6 +18,9 @@ public class MinimalBibleDebug extends MinimalBible implements Injector {
@Override
public void onCreate() {
super.onCreate();
Logger.init("MinimalBible")
.setLogLevel(LogLevel.FULL);
Logger.d("Beginning application run...");
// ACRA.init(this);
}
}