From a7bb11bcd6ea5d01848a8e96681ab1d96f9dc64f Mon Sep 17 00:00:00 2001 From: Lloyd Brookes Date: Sat, 1 Mar 2014 15:19:31 +0100 Subject: [PATCH] fixed underlining --- ws.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ws.js b/ws.js index b8a6636..8084bbe 100755 --- a/ws.js +++ b/ws.js @@ -128,9 +128,9 @@ if (argv.help){ write status to stderr so stdout can be piped to disk ($ ws > log.txt) */ if (argv.directory === process.cwd()){ - console.error("serving at %u{%s}", "http://localhost:" + argv.port); + console.error("serving at %underline{%s}", "http://localhost:" + argv.port); } else { - console.error("serving %u{%s} at %u{%s}", argv.directory, "http://localhost:" + argv.port); + console.error("serving %underline{%s} at %underline{%s}", argv.directory, "http://localhost:" + argv.port); } /** @@ -138,7 +138,7 @@ if (argv.help){ */ if (!argv["log-format"]){ console.hideCursor(); - console.log("%u{Requests} %u{Data} %u{Connections}"); + console.log("%underline{Requests} %underline{Data} %underline{Connections}"); server.on("connection", function(socket){ var oldWrite = socket.write; socket.write = function(data) {