diff --git a/server/cli.js b/server/cli.js index e8f8222..cc1d4c1 100644 --- a/server/cli.js +++ b/server/cli.js @@ -125,7 +125,7 @@ const handleAction = async (syncType, skipConfirm, configType, partials) => { // Preform the action. if (skipConfirm || answer.confirm) { if (syncType === 'import') { - const onSuccess = (name) => console.log(`${chalk.cyan.bold('[notice]')} Imported ${name} (${getConfigState(diff, name, syncType)})`); + const onSuccess = (name) => console.log(`${chalk.cyan.bold('[notice]')} Imported ${name}`); try { await Promise.all(Object.keys(finalDiff).map(async (name) => { let warning; @@ -143,7 +143,7 @@ const handleAction = async (syncType, skipConfirm, configType, partials) => { } } if (syncType === 'export') { - const onSuccess = (name) => console.log(`${chalk.cyan.bold('[notice]')} Exported ${name} (${getConfigState(diff, name, syncType)})`); + const onSuccess = (name) => console.log(`${chalk.cyan.bold('[notice]')} Exported ${name}`); try { await Promise.all(Object.keys(finalDiff).map(async (name) => {