From 5a0b2a779762b51abee47453d74e02a09f2fca14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADt=20Ku=C4=8Dera?= Date: Mon, 18 Nov 2024 04:36:00 +0100 Subject: [PATCH] Add a warning expression in the debugging snippet --- docs/troubleshooting/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/troubleshooting/README.md b/docs/troubleshooting/README.md index 8efada06..16c2544d 100644 --- a/docs/troubleshooting/README.md +++ b/docs/troubleshooting/README.md @@ -34,7 +34,7 @@ o2-analysis-... > stdout.log 2>&1 Search for keywords related to problems in the log file using the `grep` command: ```bash -grep -e "\\[ERROR\\]" -e "\\[FATAL\\]" -e "segmentation" -e "Segmentation" -e "SEGMENTATION" -e "command not found" -e "Program crashed" -e "Error:" -e "Error in " -e "\\[WARN\\]" stdout.log +grep -e "\\[ERROR\\]" -e "\\[FATAL\\]" -e "segmentation" -e "Segmentation" -e "SEGMENTATION" -e "command not found" -e "Program crashed" -e "Error:" -e "Error in " -e "\\[WARN\\]" -e "Warning in " stdout.log ``` Try to understand and resolve the first reported problem.