mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
Make Logger#log method private
This commit is contained in:
parent
f8b2b746b5
commit
62cc0679b4
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ export default class 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;
|
||||
const domain = this.color ? chalk.keyword(this.color)(this.domain) : chalk.white(this.domain);
|
||||
const domains = [domain].concat(subDomains);
|
||||
|
|
Loading…
Add table
Reference in a new issue