summaryrefslogtreecommitdiff
path: root/docs/src/gettingstarted/debugging/logging.md
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2023-05-01 15:18:40 +0200
committerJeroen Wijenbergh <46386452+jwijenbergh@users.noreply.github.com>2023-09-25 09:43:37 +0200
commit18da1df71e538cd98032937c542154f0efcb6fbb (patch)
treee4ddc488be2da6a0cad31636f0a3928e3411adf7 /docs/src/gettingstarted/debugging/logging.md
parent526e648172cb50c3ee4f24a613c90d6a367ae157 (diff)
Docs: Move state machine to API
Diffstat (limited to 'docs/src/gettingstarted/debugging/logging.md')
-rw-r--r--docs/src/gettingstarted/debugging/logging.md8
1 files changed, 0 insertions, 8 deletions
diff --git a/docs/src/gettingstarted/debugging/logging.md b/docs/src/gettingstarted/debugging/logging.md
deleted file mode 100644
index 9a7eae2..0000000
--- a/docs/src/gettingstarted/debugging/logging.md
+++ /dev/null
@@ -1,8 +0,0 @@
-# Logging
-As said, logging is used. The logging gets saved in a client-specified directory (see [API](../../api/index.html)). Logging has the following levels:
-
-- `INFO`: Messages purely for info, these do not indicate any errors. They are merely there for debugging purposes
-- `WARNING`: These messages indicate a warning, e.g. non-fatal errors
-- `ERROR`: Fatal errors which refuses the app from working correctly
-
-By default only messages below or equal to `WARNING` are logged (`WARNING`, `ERROR`). However, if the debug variable is set to `True`, all messages will be logged into the log file.