From 600318bb6ee1545ffd2a8e5c02cc5aeaa85ce5d4 Mon Sep 17 00:00:00 2001 From: Amolith Date: Sun, 5 Jun 2022 21:19:34 -0400 Subject: [PATCH] consistency: normalise quotes in logging --- root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/root.go b/root.go index 5f6d7867a1811a693e3e27b2121e6c71b2a7343e..74705f219dfa9d1804c2f8579721745e26b3ecf5 100644 --- a/root.go +++ b/root.go @@ -22,7 +22,7 @@ func (m model) root(writer http.ResponseWriter, request *http.Request) { if err != nil { return err } - log.Println("Redirecting visitor to '" + string(destinationValue) + "'") + log.Println("Redirecting visitor to \"" + string(destinationValue) + "\"") http.Redirect(writer, request, string(destinationValue), 302) } return err