From 0a9cbb059eff434aecbd52580ceedf1c8881a03b Mon Sep 17 00:00:00 2001
From: Rhys Arkins <rhys@arkins.net>
Date: Fri, 1 Mar 2019 10:44:46 +0100
Subject: [PATCH] logs: log preset file name

---
 lib/datasource/github/index.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/datasource/github/index.js b/lib/datasource/github/index.js
index 60ce84a418..c5d1b97608 100644
--- a/lib/datasource/github/index.js
+++ b/lib/datasource/github/index.js
@@ -22,7 +22,7 @@ async function fetchJSONFile(repo, fileName) {
   try {
     res = await got(url, opts);
   } catch (err) {
-    logger.debug('Failed to retrieve renovate.json from repo');
+    logger.debug(`Failed to retrieve ${fileName} from repo`);
     throw new Error('dep not found');
   }
   try {
-- 
GitLab