@@ -5,6 +5,7 @@
- Better handling if non-sRGB images;
- `SO_REUSEPORT` socker option support. Can be enabled with `IMGPROXY_SO_REUSEPORT`;
- `dpr` option always changes the resulting size even if it leads to enlarge and `enlarge` is falsey;
+- Log to STDOUT
## v2.3.0
@@ -1,6 +1,7 @@
package main
import (
+ "log"
"os"
"os/signal"
"runtime"
@@ -14,6 +15,8 @@ const version = "2.3.0"
type ctxKey string
func initialize() {
+ log.SetOutput(os.Stdout)
+
initSyslog()
configure()
initNewrelic()