Skip to content

Commit 9bd4e65

Browse files
authored
Include document uri in notebook renderer log (microsoft#167452)
This is makes the log easier to understand
1 parent b0a03e5 commit 9bd4e65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/notebook/browser/view/renderers/backLayerWebView.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ export class BackLayerWebView<T extends ICommonCellInfo> extends Themable {
215215
}
216216

217217
private _logRendererDebugMessage(msg: string) {
218-
this._renderLogger.debug(`${this.id} - ${msg}`);
218+
this._renderLogger.debug(`${this.documentUri} (${this.id}) - ${msg}`);
219219
}
220220

221221
private _updateStyles() {

0 commit comments

Comments
 (0)