Remove unnecessary log entries
These log entries add CodeQL warnings and are not necessary because our default http.ResponseWriter allows adding log entries.
This commit is contained in:
parent
759aa26a57
commit
2db15e4eb5
1 changed files with 0 additions and 5 deletions
|
@ -3,7 +3,6 @@ package log
|
|||
|
||||
import (
|
||||
"fmt"
|
||||
"log"
|
||||
"net/http"
|
||||
"os"
|
||||
|
||||
|
@ -28,8 +27,6 @@ type StackTracedError interface {
|
|||
func Error(rw http.ResponseWriter, err error) {
|
||||
rl, ok := rw.(logging.ResponseLogger)
|
||||
if !ok {
|
||||
log.Println(err)
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
|
@ -72,8 +69,6 @@ func EnabledResponse(rw http.ResponseWriter, v interface{}) {
|
|||
rl.WithFields(map[string]interface{}{
|
||||
"response": out,
|
||||
})
|
||||
} else {
|
||||
log.Println(out)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue