From 5a445443562400b65529f078cd8bfa1abac44987 Mon Sep 17 00:00:00 2001 From: James Byrne Date: Thu, 4 Jan 2024 18:26:26 +0000 Subject: [PATCH] Dev #59: correcting typo --- episodes/08-defensive.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/episodes/08-defensive.md b/episodes/08-defensive.md index 15cadbd..59e04af 100644 --- a/episodes/08-defensive.md +++ b/episodes/08-defensive.md @@ -397,7 +397,7 @@ In order of increasing severity, the available levels are: - `info`: confirmation that things are working as expected. - `warning`: something unexpected happened, but the program will keep going. - `error`: something has gone badly wrong, but the program hasn’t hurt anything. -- `critcal`: potential loss of data, security breach, etc. +- `critical`: potential loss of data, security breach, etc. If we want to see the output from less severe levels (i.e. turn our debugging statements on), we'd need to change the minimum level in the logging configuration.