From b3e5c4ea9f7e48b7141f9a1e75667a562a5f678b 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.