File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -73,13 +73,13 @@ func (a app) processIncomingRequest(r *http.Request) (legoHttpReq, error) {
7373 if err != nil {
7474 return l , fmt .Errorf ("json decoding error: %w" , err )
7575 }
76- fmt .Printf ("unchanged FQDN='%s'" , l .FQDN )
76+ log .Printf ("unchanged FQDN='%s'" , l .FQDN )
7777 l .FQDN = strings .TrimSpace (l .FQDN )
78- fmt .Printf ("trimspace FQDN='%s'" , l .FQDN )
78+ log .Printf ("trimspace FQDN='%s'" , l .FQDN )
7979 l .FQDN = strings .TrimPrefix (l .FQDN , "\n " )
80- fmt .Printf ("trimprefix FQDN='%s'" , l .FQDN )
80+ log .Printf ("trimprefix FQDN='%s'" , l .FQDN )
8181 l .FQDN = strings .TrimSuffix (l .FQDN , "." )
82- fmt .Printf ("trimsuff FQDN='%s'" , l .FQDN )
82+ log .Printf ("trimsuff FQDN='%s'" , l .FQDN )
8383
8484 if r .RequestURI == "/cleanup" {
8585 l .Action = "DELETE"
You can’t perform that action at this time.
0 commit comments