Skip to content

Commit

Permalink
Replace ioutil.Discard with io.Discard (#5603)
Browse files Browse the repository at this point in the history
  • Loading branch information
zaneli committed Aug 15, 2022
1 parent 3f92b9b commit 8c3018b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion go.mod
@@ -1,6 +1,6 @@
module gorm.io/gorm

go 1.14
go 1.16

require (
github.com/jinzhu/inflection v1.0.0
Expand Down
6 changes: 3 additions & 3 deletions logger/logger.go
Expand Up @@ -4,7 +4,7 @@ import (
"context"
"errors"
"fmt"
"io/ioutil"
"io"
"log"
"os"
"time"
Expand Down Expand Up @@ -68,8 +68,8 @@ type Interface interface {
}

var (
// Discard Discard logger will print any log to ioutil.Discard
Discard = New(log.New(ioutil.Discard, "", log.LstdFlags), Config{})
// Discard Discard logger will print any log to io.Discard
Discard = New(log.New(io.Discard, "", log.LstdFlags), Config{})
// Default Default logger
Default = New(log.New(os.Stdout, "\r\n", log.LstdFlags), Config{
SlowThreshold: 200 * time.Millisecond,
Expand Down
2 changes: 1 addition & 1 deletion tests/go.mod
@@ -1,6 +1,6 @@
module gorm.io/gorm/tests

go 1.14
go 1.16

require (
github.com/golang-sql/civil v0.0.0-20220223132316-b832511892a9 // indirect
Expand Down

0 comments on commit 8c3018b

Please sign in to comment.