]> Sergey Matveev's repositories - tofuproxy.git/blobdiff - rounds/transcodeWebP.go
Ability to dynamically control list of spying domains
[tofuproxy.git] / rounds / transcodeWebP.go
index ff1fd8c7b3c673c0216e4436db6333619c694054..a38b7f28402779ed51958a89132cdf18af60cd00 100644 (file)
@@ -65,11 +65,6 @@ func RoundTranscodeWebP(
        w.Header().Add("Content-Type", "image/png")
        w.WriteHeader(http.StatusOK)
        w.Write(data)
-       fifos.SinkOther <- fmt.Sprintf(
-               "%s %s\t%d\tWebP transcoded to PNG",
-               req.Method,
-               req.URL.String(),
-               http.StatusOK,
-       )
+       fifos.LogVarious <- fmt.Sprintf("%s %s\tWebP transcoded to PNG", req.Method, req.URL)
        return false, nil
 }