Skip to content

Commit

Permalink
fixed flutter linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
MathJud committed Nov 28, 2024
1 parent 182fcb0 commit db2a9ed
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ class _RecordAudioDialogState extends ConsumerState<_RecordAudioDialog> {
await audioRecorder.start(kDefaultCodecSettings, path: path);
}
} catch (e) {
_log.severe("could not start recording: ${e}", e, StackTrace.current);
_log.severe("could not start recording: $e", e, StackTrace.current);
return;
}
}
Expand All @@ -198,7 +198,7 @@ class _RecordAudioDialogState extends ConsumerState<_RecordAudioDialog> {
audioPath = path!;
});
} catch (e) {
_log.severe("could not stop recording: ${e}", e, StackTrace.current);
_log.severe("could not stop recording: $e", e, StackTrace.current);
return;
}
}
Expand Down

0 comments on commit db2a9ed

Please sign in to comment.