Skip to content

Commit

Permalink
fix: improve logging
Browse files Browse the repository at this point in the history
  • Loading branch information
mmatczuk committed May 25, 2023
1 parent 1400bc1 commit a53cee2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions http_proxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -200,10 +200,10 @@ func (hp *HTTPProxy) configureProxy() {
hp.log.Infof("using PAC proxy")
fn = hp.pacProxy
default:
hp.log.Infof("using direct proxy")
hp.log.Infof("no upstream proxy specified")
}

hp.log.Infof("localhost proxying mode: %s", hp.config.ProxyLocalhost)
hp.log.Infof("localhost proxying mode=%s", hp.config.ProxyLocalhost)
if hp.config.ProxyLocalhost == DirectProxyLocalhost {
fn = hp.directLocalhost(fn)
}
Expand Down

0 comments on commit a53cee2

Please sign in to comment.