]> Sergey Matveev's repositories - tofuproxy.git/blobdiff - rounds/transcodeJXL.go
Various refactoring
[tofuproxy.git] / rounds / transcodeJXL.go
index 2043fb189154a4e851fa8318faf8fa82dd9a9f1d..07b40768c7383b7b34bb9c6968c7a95d69a806fb 100644 (file)
@@ -1,5 +1,6 @@
 /*
-tofuproxy -- HTTP proxy with TLS certificates management
+tofuproxy -- flexible HTTP/HTTPS proxy, TLS terminator, X.509 TOFU
+             manager, WARC/geminispace browser
 Copyright (C) 2021 Sergey Matveev <stargrave@stargrave.org>
 
 This program is free software: you can redistribute it and/or modify
@@ -64,12 +65,8 @@ func transcodeCmd2Png(
        w.Header().Add("Content-Type", "image/png")
        w.WriteHeader(http.StatusOK)
        w.Write(data)
-       fifos.SinkOther <- fmt.Sprintf(
-               "%s %s\t%d\t%s transcoded to PNG",
-               req.Method,
-               req.URL.String(),
-               http.StatusOK,
-               contentType,
+       fifos.LogVarious <- fmt.Sprintf(
+               "%s %s\t%s transcoded to PNG", req.Method, req.URL, contentType,
        )
        return false, nil
 }