]> Sergey Matveev's repositories - tofuproxy.git/blobdiff - rounds/transcodeWebP.go
More Fprintf usage
[tofuproxy.git] / rounds / transcodeWebP.go
index 95b409a3c3ffbfd97426b3dece6875eea5f65689..016c6178b0ea9b074b6f8b001ca99c2b8d4002ab 100644 (file)
@@ -65,6 +65,8 @@ func RoundTranscodeWebP(
        w.Header().Add("Content-Type", "image/png")
        w.WriteHeader(http.StatusOK)
        w.Write(data)
-       fifos.LogVarious <- fmt.Sprintf("%s %s\tWebP transcoded to PNG", req.Method, req.URL)
+       fifos.LogVarious <- fmt.Sprintf(
+               "%s %s\tWebP transcoded to PNG", req.Method, req.URL,
+       )
        return false, nil
 }