mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-23 19:59:37 +00:00
This reverts commit 5d3f960b67.
Based on comments in https://github.com/microsoft/vscode/pull/179405#issuecomment-1506843399
This commit is contained in:
@@ -45,6 +45,6 @@ export default class Tracer extends Disposable {
|
||||
}
|
||||
|
||||
public trace(serverId: string, message: string, data?: unknown): void {
|
||||
this.logger.trace(`<${serverId}> ${message}`, data);
|
||||
this.logger.trace(`<${serverId}> ${message}`, ...(data ? [JSON.stringify(data, null, 4)] : []));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user