mozscreenshots: Change init logging to "debug" level and follow-up on bug 1248027. r=me

MozReview-Commit-ID: 6GjBRJ2C787
This commit is contained in:
Matthew Noorenberghe 2016-02-24 22:41:56 -08:00
parent 7bdf7a739b
commit d5196d8f4f
2 changed files with 2 additions and 3 deletions

View File

@ -33,8 +33,7 @@ function shouldCapture() {
// Automation isn't able to schedule test jobs to only run on nightlies so we handle it here
// (see also: bug 1116275).
let capture = AppConstants.MOZ_UPDATE_CHANNEL == "nightly" ||
AppConstants.SOURCE_REVISION_URL == "" ||
AppConstants.SOURCE_REVISION_URL == "1"; // bug 1248027
AppConstants.SOURCE_REVISION_URL == "";
if (!capture) {
ok(true, "Capturing is disabled for this MOZ_UPDATE_CHANNEL or REPO");
}

View File

@ -44,7 +44,7 @@ this.TestRunner = {
_libDir: null,
init(extensionPath) {
log.info("init");
log.debug("init");
this._extensionPath = extensionPath;
},