We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0df26b commit 2f0451dCopy full SHA for 2f0451d
src/tools/rust-analyzer/editors/code/src/util.ts
@@ -22,6 +22,10 @@ class Log {
22
log: true,
23
});
24
25
+ trace(...messages: [unknown, ...unknown[]]): void {
26
+ this.output.trace(this.stringify(messages));
27
+ }
28
+
29
debug(...messages: [unknown, ...unknown[]]): void {
30
this.output.debug(this.stringify(messages));
31
}
0 commit comments