Skip to content

Commit 82e8485

Browse files
mralephCommit Queue
authored andcommitted
[perf_witness] Remove debug print
Remove accidental debug print left behind in the UnixDomainSocket.bind. Change-Id: I65b97eeca53226c508e689175028d02e6a6a6964 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/467561 Commit-Queue: Slava Egorov <vegorov@google.com> Reviewed-by: Martin Kustermann <kustermann@google.com>
1 parent 29ca04a commit 82e8485

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

pkg/perf_witness/lib/src/common.dart

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,14 +73,10 @@ abstract class UnixDomainSocket {
7373
io.File(path).deleteSync();
7474
}
7575

76-
final x = await io.ServerSocket.bind(
76+
return await io.ServerSocket.bind(
7777
io.InternetAddress(path, type: io.InternetAddressType.unix),
7878
0,
7979
);
80-
81-
print('Server listening on $path: $x');
82-
83-
return x;
8480
}
8581
}
8682

0 commit comments

Comments
 (0)