From 385b39ff66f9bddce1d5f9bfe4c4ff74f2dfe0c2 Mon Sep 17 00:00:00 2001 From: Matthias Date: Thu, 13 Mar 2025 20:13:39 +0100 Subject: [PATCH] docs: enhance logging documentation with links --- docs/advanced-setup.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/advanced-setup.md b/docs/advanced-setup.md index b9d87f6d4..365cdfd0f 100644 --- a/docs/advanced-setup.md +++ b/docs/advanced-setup.md @@ -248,7 +248,6 @@ If this section is left out, freqtrade will provide no output (in the non-config On many Linux systems the bot can be configured to send its log messages to `syslog` or `journald` system services. Logging to a remote `syslog` server is also available on Windows. The special values for the `--logfile` command line option can be used for this. - ### Logging to syslog To send Freqtrade log messages to a local or remote `syslog` service use the `"log_config"` setup option to configure logging. @@ -268,7 +267,7 @@ To send Freqtrade log messages to a local or remote `syslog` service use the `"l "syslog": { "class": "logging.handlers.SysLogHandler", "formatter": "syslog_fmt", - // Use one of the other options above as adress instead? + // Use one of the other options above as address instead? "address": "/dev/log" } }, @@ -284,6 +283,8 @@ To send Freqtrade log messages to a local or remote `syslog` service use the `"l } ``` +[Additional log-handlers](#advanced-logging) may need to be configured to for example also have log output in the console. + #### Syslog usage Log messages are send to `syslog` with the `user` facility. So you can see them with the following commands: @@ -370,6 +371,8 @@ To send Freqtrade log messages to `journald` system service, add the following c } ``` +[Additional log-handlers](#advanced-logging) may need to be configured to for example also have log output in the console. + Log messages are send to `journald` with the `user` facility. So you can see them with the following commands: * `journalctl -f` -- shows Freqtrade log messages sent to `journald` along with other log messages fetched by `journald`.