From 42c912e1a3ad4d2974f0a617ea74acb8766151c4 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Fri, 15 May 2026 13:15:38 -0700 Subject: [PATCH] Fix log output for robots "file". --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index 10c54d4..5743555 100755 --- a/main.js +++ b/main.js @@ -205,7 +205,7 @@ async function main() { }); // Provide a robots.txt for where search engines should find things. - console.log(" * Creating router for sitemap*"); + console.log(" * Creating router for robots.txt"); router.get('/robots.txt', function (req, res) { console.log("robots.txt being provided to", req.socket.remoteAddress) res.send(robots_txt);