Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1227)

Unified Diff: sdk/lib/_internal/pub/lib/src/io.dart

Issue 104463004: Remove some leftover debugging logs in pub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/pub/lib/src/io.dart
diff --git a/sdk/lib/_internal/pub/lib/src/io.dart b/sdk/lib/_internal/pub/lib/src/io.dart
index 533790c6bab48bb165d966d615f2ced039bf0b2e..bc6ffd1edfb1b7ea2c14cb2e84411247e211f05e 100644
--- a/sdk/lib/_internal/pub/lib/src/io.dart
+++ b/sdk/lib/_internal/pub/lib/src/io.dart
@@ -187,17 +187,10 @@ String writeBinaryFile(String file, List<int> contents) {
/// at that path. Completes when the file is done being written.
Future<String> createFileFromStream(Stream<List<int>> stream, String file) {
// TODO(nweiz): remove extra logging when we figure out the windows bot issue.
- log.io("Creating $file from stream (is the stream broadcast? "
- "${stream.isBroadcast}).");
-
- var pair = tee(stream);
- pair.first.listen(
- (data) => log.io("stream emitted ${data.length} bytes"),
- onError: (error, st) => log.io("stream emitted $error\n$st"),
- onDone: () => log.io("stream is done"));
+ log.io("Creating $file from stream.");
return _descriptorPool.withResource(() {
- return pair.last.pipe(new File(file).openWrite()).then((_) {
+ return stream.pipe(new File(file).openWrite()).then((_) {
log.fine("Created $file from stream.");
return file;
});
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698