Skip to content

Commit

Permalink
Merge pull request #247 from Mooyeee/master
Browse files Browse the repository at this point in the history
Fix some bloc logs
  • Loading branch information
Frezyx authored Jul 18, 2024
2 parents 32fe34e + ff64aef commit 5cbf23b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/talker_bloc_logger/lib/bloc_logs.dart
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ class BlocChangeLog extends TalkerLog {

String _createMessage() {
final sb = StringBuffer();
sb.write(displayTitleWithTime);
sb.write(displayTitleWithTime());
sb.write('\n$message');
sb.write(
'\n${'CURRENT state: ${settings.printStateFullData ? '\n${change.currentState}' : change.currentState.runtimeType}'}');
Expand Down Expand Up @@ -122,7 +122,7 @@ class BlocCreateLog extends TalkerLog {

String _createMessage() {
final sb = StringBuffer();
sb.write(displayTitleWithTime);
sb.write(displayTitleWithTime());
sb.write('\n$message');
return sb.toString();
}
Expand All @@ -148,7 +148,7 @@ class BlocCloseLog extends TalkerLog {

String _createMessage() {
final sb = StringBuffer();
sb.write(displayTitleWithTime);
sb.write(displayTitleWithTime());
sb.write('\n$message');
return sb.toString();
}
Expand Down

0 comments on commit 5cbf23b

Please sign in to comment.