Skip to content

Commit

Permalink
chore: remove log of QUIC_GO_ENABLE_GSO
Browse files Browse the repository at this point in the history
  • Loading branch information
mzz2017 committed Aug 21, 2023
1 parent 9decb7e commit ec829ad
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 12 deletions.
6 changes: 0 additions & 6 deletions cmd/client/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,6 @@ var (
}
gliderLog.SetLogger(logger)

// QUIC_GO_ENABLE_GSO
gso, _ := strconv.ParseBool(os.Getenv("QUIC_GO_ENABLE_GSO"))
logger.Info().
Bool("Requested QUIC_GO_ENABLE_GSO", gso).
Send()

go func() {
if err := Serve(conf); err != nil {
logger.Fatal().Err(err).Send()
Expand Down
6 changes: 0 additions & 6 deletions cmd/server/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,6 @@ var (
Msg("Failed to init logger")
}

// QUIC_GO_ENABLE_GSO
gso, _ := strconv.ParseBool(os.Getenv("QUIC_GO_ENABLE_GSO"))
logger.Info().
Bool("Requested QUIC_GO_ENABLE_GSO", gso).
Send()

go func() {
if err := Serve(conf); err != nil {
logger.Fatal().
Expand Down

0 comments on commit ec829ad

Please sign in to comment.