mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 13:03:31 +00:00
feat: add trace level to client logs
This commit is contained in:
parent
45a881313a
commit
917ed63095
1 changed files with 4 additions and 0 deletions
|
@ -22,6 +22,10 @@ class Log {
|
|||
log: true,
|
||||
});
|
||||
|
||||
trace(...messages: [unknown, ...unknown[]]): void {
|
||||
this.output.trace(this.stringify(messages));
|
||||
}
|
||||
|
||||
debug(...messages: [unknown, ...unknown[]]): void {
|
||||
this.output.debug(this.stringify(messages));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue