From 0c2a7c3a88e9a7af974fc1b176947e05eeb9e6b3 Mon Sep 17 00:00:00 2001 From: Sandip Chaudhari Date: Fri, 15 Sep 2017 19:24:43 +0530 Subject: [PATCH] rain-3949: remove image not found error message --- lib/network/Images.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/network/Images.js b/lib/network/Images.js index 464e4585b..a154d8298 100644 --- a/lib/network/Images.js +++ b/lib/network/Images.js @@ -36,7 +36,6 @@ class Images{ //Clear the old subscription to the error event and put a new in place that only handle errors in loading the brokenImageUrl imageToLoadBrokenUrlOn.onerror = () => { - console.error("Could not load brokenImage:", brokenUrl); //Add an empty image to the cache so that when subsequent load calls are made for the url we don't try load the image and broken image again this._addImageToCache(url, new Image()); };