Error calls OutputErr to print to the standard logger's error channel. Arguments are handled in the manner of fmt.Print.
(v ...interface{})
| 506 | // Error calls OutputErr to print to the standard logger's error channel. |
| 507 | // Arguments are handled in the manner of fmt.Print. |
| 508 | func Error(v ...interface{}) { |
| 509 | std.Output(ERROR, 2, fmt.Sprint(v...)) |
| 510 | } |
| 511 | |
| 512 | // Errorf calls OutputErr to print to the standard logger's error channel. |
| 513 | // Arguments are handled in the manner of fmt.Printf. |
no test coverage detected