From cf394614af34cd7dc0974bb2a6a9978d00cc1010 Mon Sep 17 00:00:00 2001 From: J0WI Date: Thu, 21 May 2020 01:30:14 +0200 Subject: [PATCH] Document all log types Signed-off-by: J0WI --- .../logging_configuration.rst | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/admin_manual/configuration_server/logging_configuration.rst b/admin_manual/configuration_server/logging_configuration.rst index 9d849f9f3..615013ede 100644 --- a/admin_manual/configuration_server/logging_configuration.rst +++ b/admin_manual/configuration_server/logging_configuration.rst @@ -22,6 +22,15 @@ Logging level parameters are set in the :file:`config/config.php` file. Log type -------- +errorlog +~~~~~~~~ + +All log information will be sent to PHP ``error_log()``. + +:: + + "log_type" => "errorlog", + file ~~~~ @@ -54,6 +63,15 @@ All log information will be sent to your default syslog daemon. "logfile" => "", "loglevel" => 3, +systemd +~~~~~~~ + +All log information will be sent to Systemd journal. Requires `php-systemd `_ extension. + +:: + + "log_type" => "systemd", + Admin audit log ---------------