Use logger
This commit is contained in:
		
							parent
							
								
									112438224e
								
							
						
					
					
						commit
						6ead4d3f95
					
				
					 1 changed files with 3 additions and 6 deletions
				
			
		|  | @ -70,19 +70,16 @@ async function master(): Promise<void> { | ||||||
| 		process.exit(1); | 		process.exit(1); | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	const res = (t: string, c: string) => |  | ||||||
| 		console.log(chalk.bold(`--> ${(chalk as any)[c](t)}\n`)); |  | ||||||
| 
 |  | ||||||
| 	switch (state) { | 	switch (state) { | ||||||
| 		case State.failed: | 		case State.failed: | ||||||
| 			res('Fatal error occurred :(', 'red'); | 			log('Error', chalk.red('Fatal error occurred :(')); | ||||||
| 			process.exit(); | 			process.exit(); | ||||||
| 			return; | 			return; | ||||||
| 		case State.warn: | 		case State.warn: | ||||||
| 			res('Some problem(s) :|', 'yellow'); | 			log('Warn', chalk.yellow('Some problem(s) :|')); | ||||||
| 			break; | 			break; | ||||||
| 		case State.success: | 		case State.success: | ||||||
| 			res('OK :)', 'green'); | 			log('Info', chalk.green('OK :)')); | ||||||
| 			break; | 			break; | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue