We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab7d08c commit e193dbaCopy full SHA for e193dba
pkg/fake_gcloud/lib/retry_enforcer_storage.dart
@@ -13,7 +13,6 @@ const _skippedFirstFrames = {
13
};
14
15
void _verifyRetryOnStack() {
16
- final st = StackTrace.current.toString();
17
final trace = Trace.current();
18
19
// The first frame index outside of this file.
@@ -43,8 +42,8 @@ void _verifyRetryOnStack() {
43
42
return;
44
}
45
46
- print('Missing retry detected:\n$st\n');
47
- throw AssertionError('retry is not present in stacktrace: $st');
+ print('Missing retry detected:\n$trace\n');
+ throw AssertionError('retry is not present in stacktrace: $trace');
48
49
50
Future<R> _verifyRetry<R>(
0 commit comments