(err error, strs ...string)
| 24 | ) |
| 25 | |
| 26 | func PrintError(err error, strs ...string) { |
| 27 | print.StderrPrintln(ErrorStr(err, strs...)) |
| 28 | // PrintStacktrace(err) |
| 29 | } |
| 30 | |
| 31 | func PrintErrorForUser(err error, strs ...string) { |
| 32 | print.StderrBoldFirstLine(ErrorStr(err, strs...)) |
no test coverage detected