mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-22 01:47:39 -07:00
Use logger
This commit is contained in:
parent
ae54d93c72
commit
f8b649d06c
1 changed files with 3 additions and 6 deletions
|
@ -70,19 +70,16 @@ async function master(): Promise<void> {
|
|||
process.exit(1);
|
||||
}
|
||||
|
||||
const res = (t: string, c: string) =>
|
||||
console.log(chalk.bold(`--> ${(chalk as any)[c](t)}\n`));
|
||||
|
||||
switch (state) {
|
||||
case State.failed:
|
||||
res('Fatal error occurred :(', 'red');
|
||||
log('Error', chalk.red('Fatal error occurred :('));
|
||||
process.exit();
|
||||
return;
|
||||
case State.warn:
|
||||
res('Some problem(s) :|', 'yellow');
|
||||
log('Warn', chalk.yellow('Some problem(s) :|'));
|
||||
break;
|
||||
case State.success:
|
||||
res('OK :)', 'green');
|
||||
log('Info', chalk.green('OK :)'));
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue