Skip to content

Commit

Permalink
Don't buffer doctor logger (#19982)
Browse files Browse the repository at this point in the history
- We don't need to buffer the logger with a thousand capacity. It's not
a high-throughput logger, this also caused issue whereby the logger
can't keep up with repeated messages being send(somehow they are lost in
the queue?).
- Resolves #19969

Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
  • Loading branch information
Gusted and lunny authored Jun 16, 2022
1 parent b01dce2 commit e399f0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/doctor.go
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ func runDoctor(ctx *cli.Context) error {

// Now we can set up our own logger to return information about what the doctor is doing
if err := log.NewNamedLogger("doctorouter",
1000,
0,
"console",
"console",
fmt.Sprintf(`{"level":"INFO","stacktracelevel":"NONE","colorize":%t,"flags":-1}`, colorize)); err != nil {
Expand Down

0 comments on commit e399f0f

Please sign in to comment.