mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
This commit is contained in:
parent
adbb6bee26
commit
ffd11a5b6e
1 changed files with 5 additions and 2 deletions
|
@ -92,7 +92,10 @@ export class Logger implements VsLogger {
|
|||
colors: process.stdout.isTTY,
|
||||
});
|
||||
}
|
||||
|
||||
this.server.log([...this.baseTags, 'error', 'stderr'], msg);
|
||||
if (this.verbose) {
|
||||
this.server.log([...this.baseTags, 'error', 'stderr'], msg);
|
||||
} else {
|
||||
this.server.log([...this.baseTags, 'debug', 'stderr'], msg);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue