]> Sergey Matveev's repositories - tofuproxy.git/blobdiff - rounds/transcodeWebP.go
gemini:// support
[tofuproxy.git] / rounds / transcodeWebP.go
index ff1fd8c7b3c673c0216e4436db6333619c694054..82d3661b85970b9504be2115ba6af2dfbae8c060 100644 (file)
@@ -1,5 +1,6 @@
 /*
-tofuproxy -- HTTP proxy with TLS certificates management
+tofuproxy -- flexible HTTP proxy, TLS terminator, X.509 certificates
+             manager, WARC/Gemini browser
 Copyright (C) 2021 Sergey Matveev <stargrave@stargrave.org>
 
 This program is free software: you can redistribute it and/or modify
@@ -65,11 +66,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
 }