Skip to content

Commit f417972

Browse files
committed
Fix error log prefix
1 parent b3f05d0 commit f417972

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/trygolang/errs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type (
1515
)
1616

1717
func (e *ExecError) Error() string {
18-
return fmt.Sprintf("[Error] %s (%s)", e.Err.Error(), e.Name)
18+
return fmt.Sprintf("%s (%s)", e.Err.Error(), e.Name)
1919
}
2020

2121
// Unwrap -- 内部エラーを返します.

0 commit comments

Comments
 (0)