Skip to content

Commit

Permalink
fix: remove extra success logger
Browse files Browse the repository at this point in the history
  • Loading branch information
thymikee committed Feb 19, 2019
1 parent 4773afa commit 8bd3b8b
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions packages/cli/src/util/logger.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,6 @@ const error = (...messages: Array<string>) => {
console.error(`${chalk.red.bold('error')} ${formatMessages(messages)}`);
};

const success = (...messages: Array<string>) => {
console.log(`${chalk.green.bold('success')} ${formatMessages(messages)}`);
};

const debug = (...messages: Array<string>) => {
console.log(`${chalk.gray.bold('debug')} ${formatMessages(messages)}`);
};
Expand All @@ -41,7 +37,6 @@ export default {
info,
warn,
error,
success,
debug,
log,
};

0 comments on commit 8bd3b8b

Please sign in to comment.