mirror of
https://github.com/MinimalBible/MinimalBible
synced 2025-07-16 21:24:47 -04:00
Switch the logging framework
This commit is contained in:
@ -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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user