From fbe754960494748ec3d3db098b655343a84a3f69 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Sun, 30 Jun 2019 18:08:04 -0600 Subject: [PATCH] better logging --- server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.js b/server.js index d4c999e..7d65973 100644 --- a/server.js +++ b/server.js @@ -212,7 +212,7 @@ exports.checkWwws = checkWwws; function myVhostApp(req, res) { // SECURITY greenlock pre-sanitizes hostnames to prevent unauthorized fs access so you don't have to // (also: only domains approved above will get here) - console.info(req.method, (req.headers.host || "") + req.url); + console.info("\n", req.method, (req.headers.host || "") + req.url); Object.keys(req.headers).forEach(function(key) { console.info(key, req.headers[key]); });