From 58449c269be1b4e1310fe2cc0463b1b0bbfea0ee Mon Sep 17 00:00:00 2001 From: Oliver Salzburg Date: Thu, 6 Oct 2016 10:10:00 +0200 Subject: [PATCH] Revert "Print error response" This reverts commit 1da604cdf72b37c4e4fbda28d95019c1ab6de1d1. --- lib/routes/api/repo.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/routes/api/repo.js b/lib/routes/api/repo.js index 6350bd0cc..2ac8f5abf 100644 --- a/lib/routes/api/repo.js +++ b/lib/routes/api/repo.js @@ -214,7 +214,6 @@ exports.create_project = function (req, res, next) { debug(`Setting up repository "${project.name}" with provider "${provider.id}"...`); plugin.setupRepo(req.user.account(provider).config, provider.config, project, function (err, config) { if (err) { - debug(err); debug(`Setting up repository "${project.name}" failed!`, err.status, err.message); return error(500, `Failed to setup repo: ${err.message}`); }