Debugging

This commit is contained in:
M66B 2020-07-26 09:37:03 +02:00
parent 84d544351c
commit 96dc7194b1
1 changed files with 2 additions and 1 deletions

View File

@ -72,6 +72,7 @@ public class ApplicationEx extends Application {
getMainLooper().setMessageLogging(new Printer() { getMainLooper().setMessageLogging(new Printer() {
@Override @Override
public void println(String msg) { public void println(String msg) {
if (BuildConfig.DEBUG)
Log.d("Loop: " + msg); Log.d("Loop: " + msg);
} }
}); });