From 625504b8ebf9fee9a8285440e33532f62ff64d00 Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Mon, 27 Nov 2023 17:23:31 +0000 Subject: [PATCH] Fix an httpd error log. git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4648 ed5197a5-7fde-0310-b194-c3ffbd925b24 --- core/httpd.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/httpd.js b/core/httpd.js index 8db93f3e..467f0e36 100644 --- a/core/httpd.js +++ b/core/httpd.js @@ -582,7 +582,7 @@ if (tildefriends.https_port) { handleConnection(client); return result; } catch (error) { - logError("[" + new Date() + "] [" + client.peerName + "] " + error); + logError("[" + new Date() + "] " + error); } }); }).catch(function(error) {