Different format of error string
This commit is contained in:
parent
bc020b2830
commit
c66ba0e169
1 changed files with 2 additions and 2 deletions
4
pkg.go
4
pkg.go
|
@ -52,10 +52,10 @@ func callback(wrapped Error) {
|
|||
func (wrapped Error) Error() string {
|
||||
var code string
|
||||
if wrapped.Code != "" {
|
||||
code = wrapped.Code + " "
|
||||
code = wrapped.Code + ":"
|
||||
}
|
||||
return fmt.Sprintf(
|
||||
"%s[%s:%d] %s",
|
||||
"[%s%s:%d] %s",
|
||||
code,
|
||||
wrapped.File,
|
||||
wrapped.Line,
|
||||
|
|
Loading…
Add table
Reference in a new issue