Remove stray angle bracket from file logging output

master
Sven Slootweg 8 years ago
parent 9846bffb65
commit 7ca8937302

@ -78,8 +78,8 @@ module.exports = function namedLog(name) {
suffix = " ..."; suffix = " ...";
} }
_this.info("<File \"" + shortPath + ">\" <Buffer " + hexify(firstBytes).join(" ") + " " + suffix + " >>"); _this.info("<File \"" + shortPath + "\" <Buffer " + hexify(firstBytes).join(" ") + " " + suffix + " >>");
}); });
} }
}; };
}; };

@ -68,7 +68,7 @@ module.exports = function namedLog(name, options = {}) {
suffix = " ..." suffix = " ..."
} }
this.info(`<File "${shortPath}>" <Buffer ${hexify(firstBytes).join(" ")} ${suffix} >>`); this.info(`<File "${shortPath}" <Buffer ${hexify(firstBytes).join(" ")} ${suffix} >>`);
}); });
} }
} }

Loading…
Cancel
Save