| Index: sdk/lib/_internal/pub/lib/src/source/hosted.dart
|
| diff --git a/sdk/lib/_internal/pub/lib/src/source/hosted.dart b/sdk/lib/_internal/pub/lib/src/source/hosted.dart
|
| index 56a76a9ddeeb30726fa4a52230fa715a2c3935f5..affc9b09477c7b5da39fff12cf5d311ec487e684 100644
|
| --- a/sdk/lib/_internal/pub/lib/src/source/hosted.dart
|
| +++ b/sdk/lib/_internal/pub/lib/src/source/hosted.dart
|
| @@ -179,8 +179,8 @@ class HostedSource extends CachedSource {
|
| return httpClient.send(new http.Request("GET", url))
|
| .then((response) => response.stream)
|
| .then((stream) {
|
| - return timeout(extractTarGz(stream, tempDir), HTTP_TIMEOUT,
|
| - 'fetching URL "$url"');
|
| + return timeout(extractTarGz(stream, tempDir), HTTP_TIMEOUT, url,
|
| + 'downloading $url');
|
| }).then((_) {
|
| // Remove the existing directory if it exists. This will happen if
|
| // we're forcing a download to repair the cache.
|
|
|