X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=rounds%2FtranscodeJXL.go;h=07b40768c7383b7b34bb9c6968c7a95d69a806fb;hb=aca0f719ffa95e51420a625813f2f4cbf1d5397c;hp=2043fb189154a4e851fa8318faf8fa82dd9a9f1d;hpb=cb0d759766dd7183adc00f097760fc82ff2796d0;p=tofuproxy.git diff --git a/rounds/transcodeJXL.go b/rounds/transcodeJXL.go index 2043fb1..07b4076 100644 --- a/rounds/transcodeJXL.go +++ b/rounds/transcodeJXL.go @@ -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 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 }