(err error)
| 134 | } |
| 135 | |
| 136 | func IsNoPrint(err error) bool { |
| 137 | if cortexError, ok := err.(*Error); ok { |
| 138 | return cortexError.NoPrint |
| 139 | } |
| 140 | return false |
| 141 | } |
| 142 | |
| 143 | func SetNoPrint(err error) error { |
| 144 | cortexError := WithStack(err).(*Error) |
no outgoing calls
no test coverage detected