Reduced logging

This commit is contained in:
M66B 2019-12-07 18:30:43 +01:00
parent 334c67d79d
commit cb8c34d74b
1 changed files with 4 additions and 4 deletions

View File

@ -62,14 +62,14 @@ public class FragmentDialogBase extends DialogFragment {
public void onResume() {
registry.setCurrentState(Lifecycle.State.RESUMED);
super.onResume();
Log.i("Resume " + this);
Log.d("Resume " + this);
}
@Override
public void onPause() {
registry.setCurrentState(Lifecycle.State.STARTED);
super.onPause();
Log.i("Pause " + this);
Log.d("Pause " + this);
}
@Override
@ -87,14 +87,14 @@ public class FragmentDialogBase extends DialogFragment {
} catch (Throwable ex) {
Log.e(ex);
}
Log.i("Start " + this);
Log.d("Start " + this);
}
@Override
public void onStop() {
registry.setCurrentState(Lifecycle.State.CREATED);
super.onStop();
Log.i("Stop " + this);
Log.d("Stop " + this);
}
@Override