Skip to content
Snippets Groups Projects
Commit fbce505a authored by Rhys Arkins's avatar Rhys Arkins
Browse files

Lower upgrades print to debug

parent 8ae626cd
No related branches found
No related tags found
No related merge requests found
......@@ -179,7 +179,7 @@ async function processUpgrades(upgrades) {
} else {
logger.verbose('No upgrades to process');
}
logger.verbose(`All upgrades: ${JSON.stringify(upgrades)}`);
logger.debug(`All upgrades: ${JSON.stringify(upgrades)}`);
const branchUpgrades = {};
for (const upgrade of upgrades) {
const flattened = Object.assign({}, upgrade.config, upgrade);
......@@ -214,7 +214,7 @@ async function processUpgrades(upgrades) {
branchUpgrades[branchName] = branchUpgrades[branchName] || [];
branchUpgrades[branchName] = [flattened].concat(branchUpgrades[branchName]);
}
logger.verbose(`Branched upgrades: ${JSON.stringify(branchUpgrades)}`);
logger.debug(`Branched upgrades: ${JSON.stringify(branchUpgrades)}`);
for (const branch of Object.keys(branchUpgrades)) {
await module.exports.removeStandaloneBranches(branchUpgrades[branch]);
await module.exports.updateBranch(branchUpgrades[branch]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment