mirror of
https://github.com/golang/go
synced 2024-11-18 19:34:41 -07:00
internal/lsp: add additional information when logging errors
Fixes golang/go#33499 This logs additional information compatible with `golang.org/x/xerrors` like the frames. Change-Id: If25c3979cf294dbe55b0e3d9d999b24c1ff8900d GitHub-Last-Rev: 210fa40bd29de99a9052eb67d197154f4bd74e10 GitHub-Pull-Request: golang/tools#144 Reviewed-on: https://go-review.googlesource.com/c/tools/+/189344 Reviewed-by: Rebecca Stambler <rstambler@golang.org> Run-TryBot: Rebecca Stambler <rstambler@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
parent
07722704da
commit
11cc3c157e
@ -22,8 +22,12 @@ func (e Event) Format(f fmt.State, r rune) {
|
||||
}
|
||||
fmt.Fprint(f, e.Message)
|
||||
if e.Error != nil {
|
||||
if f.Flag('+') {
|
||||
fmt.Fprintf(f, ": %+v", e.Error)
|
||||
} else {
|
||||
fmt.Fprintf(f, ": %v", e.Error)
|
||||
}
|
||||
}
|
||||
for _, tag := range e.Tags {
|
||||
fmt.Fprintf(f, "\n\t%v = %v", tag.Key, tag.Value)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user