Merge pull request #131 from TouchInstinct/logging

toString for ViewControllerFragment
This commit is contained in:
Denis Karmyshakov 2018-08-22 17:55:05 +03:00 committed by GitHub
commit e6dd2c5bcd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -384,6 +384,12 @@ public abstract class ViewControllerFragment<TState extends AbstractState, TActi
super.onDestroy();
}
@NonNull
@Override
public String toString() {
return super.toString() + "ViewController: " + getViewControllerClass();
}
private static class PlaceholderView extends FrameLayout {
@NonNull