diff --git a/src/index.js b/src/index.js
index 5ded3c765905449a8c0b55c9538e0fd8e4e88fcb..29e8eee3ece521b3d015eda128674172381e0e6b 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() {