-
-
Couldn't load subscription status.
- Fork 101
Show full data of Bloc logs in Flutter Talker #266
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## master #266 +/- ##
===========================================
+ Coverage 98.73% 100.00% +1.26%
===========================================
Files 28 3 -25
Lines 555 90 -465
===========================================
- Hits 548 90 -458
+ Misses 7 0 -7 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR fixes a bug in the Flutter Talker Screen by ensuring that the full state data from Bloc logs is included in the log messages. Key changes include:
- Updating BlocStateLog and BlocChangeLog constructors to pass full state information via the super call.
- Removing duplicate state information writing from the log formatting methods.
Co-authored-by: Copilot <[email protected]>
Co-authored-by: Copilot <[email protected]>
Hello!
This pull request fixes a minor bug in the Flutter Talker Screen; basically since the
BlocStateLogand theBlocChangeLogdidn'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:

After:
