提交 a5fcab23 编写于 作者: I isidor

always append a new line for output coming from an extension such that...

always append a new line for output coming from an extension such that seperate logs go to seperate lines

fixes #23695
上级 15b10746
......@@ -244,8 +244,9 @@ export class DebugService implements debug.IDebugService {
}
// flush simple values
// always append a new line for output coming from an extension such that seperate logs go to seperate lines #23695
if (simpleVals.length) {
this.model.appendToRepl(simpleVals.join(' '), sev);
this.model.appendToRepl(simpleVals.join(' ') + '\n', sev);
}
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册