remove mention of nonexistent Fatal() from docs

This commit is contained in:
miampf 2024-01-22 13:56:51 +01:00
parent eb69861925
commit 944bdedc59
No known key found for this signature in database
GPG key ID: 376EAC0E5307A669

View file

@ -62,7 +62,6 @@ Further we try to adhere to the following guidelines:
* `Info()` for general information. * `Info()` for general information.
* `Warn()` for information that may indicate unwanted behavior, but is not an application error. Commonly used by retry loops. * `Warn()` for information that may indicate unwanted behavior, but is not an application error. Commonly used by retry loops.
* `Error()` to log information about any errors that occurred. * `Error()` to log information about any errors that occurred.
* `Fatal()` to log information about any errors that occurred and then exit the program. Should only be used in the main package of an application.
* Loggers passed to subpackages of an application may use the `WithGroup()` method for better understanding of where a message originated. * Loggers passed to subpackages of an application may use the `WithGroup()` method for better understanding of where a message originated.