From 944bdedc59482ceb96db660072d23235bf0e1c0c Mon Sep 17 00:00:00 2001 From: miampf Date: Mon, 22 Jan 2024 13:56:51 +0100 Subject: [PATCH] remove mention of nonexistent `Fatal()` from docs --- dev-docs/conventions.md | 1 - 1 file changed, 1 deletion(-) diff --git a/dev-docs/conventions.md b/dev-docs/conventions.md index 2a4005fef..a5fc40020 100644 --- a/dev-docs/conventions.md +++ b/dev-docs/conventions.md @@ -62,7 +62,6 @@ Further we try to adhere to the following guidelines: * `Info()` for general information. * `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. - * `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.