Make Logger#log method private
This commit is contained in:
		| @@ -19,7 +19,7 @@ export default class Logger { | |||||||
| 		return logger; | 		return logger; | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	public log(level: string, message: string, important = false, subDomains: string[] = []): void { | 	private log(level: string, message: string, important = false, subDomains: string[] = []): void { | ||||||
| 		if (program.quiet) return; | 		if (program.quiet) return; | ||||||
| 		const domain = this.color ? chalk.keyword(this.color)(this.domain) : chalk.white(this.domain); | 		const domain = this.color ? chalk.keyword(this.color)(this.domain) : chalk.white(this.domain); | ||||||
| 		const domains = [domain].concat(subDomains); | 		const domains = [domain].concat(subDomains); | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 syuilo
					syuilo