Errorln logs to the ERROR log. Arguments are handled in the manner of fmt.Println.
(args ...any)
| 80 | |
| 81 | // Errorln logs to the ERROR log. Arguments are handled in the manner of fmt.Println. |
| 82 | func Errorln(args ...any) { |
| 83 | internal.LoggerV2Impl.Errorln(args...) |
| 84 | } |
| 85 | |
| 86 | // Fatal logs to the FATAL log. Arguments are handled in the manner of fmt.Print. |
| 87 | // It calls os.Exit() with exit code 1. |