Skip to content

Commit 25bd38b

Browse files
DanTupCommit Queue
authored andcommitted
[dds/dap] Enable verbose logging for debug_test
I'm struggling to reproduce the flakes noted in #60187 so hopefully verbose logs will help understand what's wrong. Change-Id: Id76b30b4efc9fb63cfacd01d2df6dc5a8ea4c7eb Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/411681 Commit-Queue: Derek Xu <[email protected]> Reviewed-by: Derek Xu <[email protected]> Reviewed-by: Jessy Yameogo <[email protected]>
1 parent 617e0e1 commit 25bd38b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pkg/dds/test/dap/integration/debug_test.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ main() {
1818
group('debug mode', () {
1919
late DapTestSession dap;
2020
setUp(() async {
21-
dap = await DapTestSession.setUp();
21+
// Temporarily enable verbose logging to debug some flakes on the bots
22+
// https://github.com/dart-lang/sdk/issues/60187
23+
dap = await DapTestSession.setUp(forceVerboseLogging: true);
2224
});
2325
tearDown(() => dap.tearDown());
2426

0 commit comments

Comments
 (0)