fix: Fix debug message printing when debug is disabled. (#1043)
This commit is contained in:
parent
dec22d7483
commit
1292ea9e38
1 changed files with 1 additions and 1 deletions
|
@ -142,7 +142,7 @@ func (s *Session) RequestWithLockedBucket(method, urlStr, contentType string, b
|
|||
}
|
||||
defer func() {
|
||||
err2 := resp.Body.Close()
|
||||
if err2 != nil {
|
||||
if s.Debug && err2 != nil {
|
||||
log.Println("error closing resp body")
|
||||
}
|
||||
}()
|
||||
|
|
Loading…
Reference in a new issue