Merge pull request #2095 from nextcloud/backport/2091/stable16

[stable16] Document all log types
This commit is contained in:
Morris Jobke 2020-05-25 14:22:33 +02:00 committed by GitHub
commit aec6a5d001
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 <https://github.com/systemd/php-systemd>`_ extension.
::
"log_type" => "systemd",
Admin audit log
---------------