chore: Update config.sample.php to include query log extensions

Signed-off-by: Marcel Müller <marcel-mueller@gmx.de>
pull/52276/head
Marcel Müller 6 months ago
parent 0955b0a39d
commit 2ca168f717
  1. 22
      config/config.sample.php

@ -2512,6 +2512,28 @@ $CONFIG = [
*/
'query_log_file' => '',
/**
* Prefix all queries with the requestid when set to `yes`
*
* Requires `query_log_file` to be set.
*/
'query_log_file_requestid' => '',
/**
* Add all query parameters to the query log entry when set to `yes`
*
* Requires `query_log_file` to be set.
* Warning: This will log sensitive data into a plain text file.
*/
'query_log_file_parameters' => '',
/**
* Add a backtrace to the query log entry when set to `yes`
*
* Requires `query_log_file` to be set.
*/
'query_log_file_backtrace' => '',
/**
* Log all redis requests into a file
*

Loading…
Cancel
Save