Skip to content

Commit

Permalink
fix(f3): suppress INFO logs under f3 to reduce noises (#4942)
Browse files Browse the repository at this point in the history
  • Loading branch information
hanabi1224 authored Oct 28, 2024
1 parent db053a1 commit 3497d5e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions f3-sidecar/ffi_impl.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ func init() {
checkError(err)
err = logging.SetLogLevel("f3/sidecar", "debug")
checkError(err)
err = logging.SetLogLevel("f3", "warn")
checkError(err)
GoF3NodeImpl = &f3Impl{ctx: context.Background()}
}

Expand Down

0 comments on commit 3497d5e

Please sign in to comment.