Show full data of Bloc logs in Flutter Talker #266
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hello!
This pull request fixes a minor bug in the Flutter Talker Screen; basically since the
BlocStateLog
and theBlocChangeLog
didn't callsuper()
with all the data they provide, only part of the information was getting into the message field of theTalkerLog
, resulting in only part of data being shown in the actual application, while the full data was printed in debug console.Before:
![image](https://private-user-images.githubusercontent.com/80962739/373805004-52e4b22f-2d74-43a5-8553-4dc340556916.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk0NTY2ODMsIm5iZiI6MTczOTQ1NjM4MywicGF0aCI6Ii84MDk2MjczOS8zNzM4MDUwMDQtNTJlNGIyMmYtMmQ3NC00M2E1LTg1NTMtNGRjMzQwNTU2OTE2LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTMlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjEzVDE0MTk0M1omWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTU0NjZmZGNhMTk5OWE0NjVjNjMwNGM2MjJlYWUyY2M5Mjk5ODU5MjgzMzNkZjYzOWUwYTVkN2M1OGIwYWY1YzgmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.kXGtGm6kKArMOwK90yvRaiyGbESGLyepULHeyvOUgUA)
After:
![image](https://private-user-images.githubusercontent.com/80962739/373805273-0090d2a7-ecc2-42a4-9167-38d6e99565db.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk0NTY2ODMsIm5iZiI6MTczOTQ1NjM4MywicGF0aCI6Ii84MDk2MjczOS8zNzM4MDUyNzMtMDA5MGQyYTctZWNjMi00MmE0LTkxNjctMzhkNmU5OTU2NWRiLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTMlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjEzVDE0MTk0M1omWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTIzNjQxMjZkMjIxY2I3NzAxZGRlMjRmNzNkZTNjMDk4ZGJkNWU5MzU1MWE1OTk1MTE0ZTYzNWY1YjBiNmFhNmQmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.wUVv7Z0tTpC0EKEAIKNytLW4KHrde-IBg-cHdMPg3kA)