From 2c3fcf0889887c65d164e6f60300e3f6fedd5c6e Mon Sep 17 00:00:00 2001
From: Rhys Arkins <rhys@keylocation.sg>
Date: Sun, 8 Jan 2017 14:27:03 +0100
Subject: [PATCH] Improve error messages

---
 src/index.js | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/index.js b/src/index.js
index 5ded3c7659..29e8eee3ec 100644
--- a/src/index.js
+++ b/src/index.js
@@ -19,7 +19,7 @@ initializeGitHub()
 .then(determineUpgrades)
 .then(processUpgradesSequentially)
 .catch(err => {
-  console.log('updateDependency error: ' + err);
+  console.log('renovate caught error: ' + err);
 });
 
 function validateArguments() {
@@ -108,6 +108,7 @@ function updateDependency(depType, depName, currentVersion, nextVersion) {
         console.log('Response body: ' + error.response.body);
         throw error;
       }
+      // Otherwise we swallow this error and continue
     });
   }
   function ensureCommit() {
-- 
GitLab