mirror of https://github.com/M66B/FairEmail.git
Improve debug logging
This commit is contained in:
parent
c04ce42eff
commit
1b7e79012b
|
@ -45,32 +45,32 @@ public class FragmentEx extends Fragment {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onCreate(Bundle savedInstanceState) {
|
public void onCreate(Bundle savedInstanceState) {
|
||||||
Log.i(Helper.TAG, "Create " + this.getClass().getName());
|
Log.i(Helper.TAG, "Create " + this);
|
||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
|
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
|
||||||
Log.i(Helper.TAG, "Create view " + this.getClass().getName());
|
Log.i(Helper.TAG, "Create view " + this);
|
||||||
return super.onCreateView(inflater, container, savedInstanceState);
|
return super.onCreateView(inflater, container, savedInstanceState);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onActivityCreated(Bundle savedInstanceState) {
|
public void onActivityCreated(Bundle savedInstanceState) {
|
||||||
Log.i(Helper.TAG, "Activity " + this.getClass().getName());
|
Log.i(Helper.TAG, "Activity " + this);
|
||||||
super.onActivityCreated(savedInstanceState);
|
super.onActivityCreated(savedInstanceState);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onResume() {
|
public void onResume() {
|
||||||
Log.i(Helper.TAG, "Resume " + this.getClass().getName());
|
Log.i(Helper.TAG, "Resume " + this);
|
||||||
super.onResume();
|
super.onResume();
|
||||||
updateSubtitle();
|
updateSubtitle();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onPause() {
|
public void onPause() {
|
||||||
Log.i(Helper.TAG, "Pause " + this.getClass().getName());
|
Log.i(Helper.TAG, "Pause " + this);
|
||||||
super.onPause();
|
super.onPause();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -86,13 +86,13 @@ public class FragmentEx extends Fragment {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onConfigurationChanged(Configuration newConfig) {
|
public void onConfigurationChanged(Configuration newConfig) {
|
||||||
Log.i(Helper.TAG, "Config " + this.getClass().getName());
|
Log.i(Helper.TAG, "Config " + this);
|
||||||
super.onConfigurationChanged(newConfig);
|
super.onConfigurationChanged(newConfig);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onDestroy() {
|
public void onDestroy() {
|
||||||
Log.i(Helper.TAG, "Destroy " + this.getClass().getName());
|
Log.i(Helper.TAG, "Destroy " + this);
|
||||||
super.onDestroy();
|
super.onDestroy();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue