Remove extra blank line in logs (#19307)

This commit is contained in:
Andy
2017-10-18 16:04:18 -07:00
committed by GitHub
parent f1abe3c284
commit 6c1afba389

View File

@@ -131,7 +131,7 @@ namespace ts.server {
const json = JSON.stringify(msg);
if (verboseLogging) {
logger.info(msg.type + ":\n" + indent(json));
logger.info(`${msg.type}:${indent(json)}`);
}
const len = byteLength(json, "utf8");