From 8bde167226844f8ce8d5899c8ddaa3072278436c Mon Sep 17 00:00:00 2001 From: Umputun Date: Sun, 26 Nov 2023 18:49:02 -0600 Subject: [PATCH] change logger to lgr for only from msg --- app/proxy/only_from.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/proxy/only_from.go b/app/proxy/only_from.go index bc2cd1b..16f7194 100644 --- a/app/proxy/only_from.go +++ b/app/proxy/only_from.go @@ -2,11 +2,12 @@ package proxy import ( "bytes" - "log" "net" "net/http" "strings" + log "github.com/go-pkgz/lgr" + "github.com/umputun/reproxy/app/discovery" )