From 43f4c3ef7a0fd756e0a57882324522a1d781de9f Mon Sep 17 00:00:00 2001 From: Matt Clarkson Date: Fri, 29 Apr 2016 13:50:15 +0100 Subject: [PATCH] WIP: log more stuff on CI --- lib/local/browser.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/local/browser.js b/lib/local/browser.js index d072901..51c7f65 100644 --- a/lib/local/browser.js +++ b/lib/local/browser.js @@ -16,6 +16,7 @@ module.exports = function (browser) { cache[name] = Q(_.clone(browser)).then(function (current) { var location = checkDefaultLocations(browser, current); if (location) { + console.log(current, location); return setPath(current, location); } @@ -44,7 +45,7 @@ module.exports = function (browser) { current.args = ['--wait-apps', '--new', '--fresh', '-a', current.path].concat(current.args || []); } } - + console.log(current); return current; }); }