Skip to content

Commit

Permalink
Fix plugin crash without -verbose flag
Browse files Browse the repository at this point in the history
  • Loading branch information
lixin9311 authored Dec 11, 2019
1 parent 3ebf450 commit a57bc39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion log.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ func (l *logHelper) Write(p []byte) (n int, err error) {
logger.Printf("%s%s\n", l.prefix, p)
return len(p), nil
}
return
return len(p), nil
}

func newLogHelper(prefix string) *logHelper {
Expand Down

0 comments on commit a57bc39

Please sign in to comment.