Skip to content

Commit

Permalink
fix: bad log message format in dap messages
Browse files Browse the repository at this point in the history
  • Loading branch information
connor4312 committed Jun 6, 2020
1 parent d376aef commit b3f48fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dap/transport.ts
Expand Up @@ -89,7 +89,7 @@ export class StreamDapTransport implements IDapTransport {

this.logger?.verbose(LogTag.DapSend, undefined, {
connectionId: this._connectionId,
objectToLog,
message: objectToLog,
});
}
const data = `Content-Length: ${Buffer.byteLength(json, 'utf8')}\r\n\r\n${json}`;
Expand Down

0 comments on commit b3f48fc

Please sign in to comment.