File tree Expand file tree Collapse file tree
packages/devtools_app/lib/src/screens/logging Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -431,11 +431,9 @@ class LoggingController extends DevToolsScreenController
431431 }
432432
433433 void _handleTimerEvent (Event e) {
434- final kind = e.kind! ;
435-
436434 log (
437435 LogData (
438- kind,
436+ e. kind! ,
439437 jsonEncode (e.json),
440438 e.timestamp,
441439 summary: e.details,
Original file line number Diff line number Diff line change @@ -201,6 +201,8 @@ class KindMetaDataChip extends MetadataChip {
201201 String ? kindIconAsset;
202202 if (kind == 'stdout' || kind == 'stderr' ) {
203203 kindIcon = Icons .terminal_rounded;
204+ } else if (kind == 'TimerSignificantlyOverdue' ) {
205+ kindIcon = Icons .timer;
204206 } else if (RegExp (r'^flutter\..*$' ).hasMatch (kind)) {
205207 kindIconAsset = 'icons/flutter.png' ;
206208 kindIcon = null ;
You can’t perform that action at this time.
0 commit comments