added url into error message when downloading from filestore

This commit is contained in:
Henry Oswald 2014-06-10 14:09:36 +01:00
parent 8d337a26db
commit 3e4cfc5ba9

View file

@ -14,10 +14,10 @@ module.exports = UrlFetcher =
if res.statusCode >= 200 and res.statusCode < 300
urlStream.pipe(fileStream)
else
callbackOnce(new Error("URL returned non-success status code: #{res.statusCode}"))
callbackOnce(new Error("URL returned non-success status code: #{res.statusCode} #{url}"))
urlStream.on "error", (error) ->
callbackOnce(error or new Error("Something went wrong downloading the URL"))
callbackOnce(error or new Error("Something went wrong downloading the URL #{url}"))
urlStream.on "end", () ->
callbackOnce()