Reduced logging

pull/169/head
M66B 6 years ago
parent 334c67d79d
commit cb8c34d74b

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

Loading…
Cancel
Save