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