summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Gustafsson2022-11-28 10:10:01 +0000
committerDaniel Gustafsson2022-11-28 10:10:01 +0000
commit1f059a440864021b23b0667e7c0cb664710b660d (patch)
treefe2c237df77b0ebeb02e2375422b36bd954b77ce
parentcbe6e482d7bf851c6e466697a21dcef7b05cbb59 (diff)
doc: Clarify unit of logging for log_temp_files
When the unit is omitted from log_temp_files the value is taken as kb, but the logged value is also without unit but specified in bytes. This could cause some confusion, so clarify in the documentation which unit is used when logging. Reported-by: [email protected] Reviewed-by: Bruce Momjian <[email protected]> Discussion: https://postgr.es/m/[email protected]
-rw-r--r--doc/src/sgml/config.sgml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml
index 24b1624bad1..9fd2075b1eb 100644
--- a/doc/src/sgml/config.sgml
+++ b/doc/src/sgml/config.sgml
@@ -7501,7 +7501,7 @@ log_line_prefix = '%m [%p] %q%u@%d/%a '
Temporary files can be
created for sorts, hashes, and temporary query results.
If enabled by this setting, a log entry is emitted for each
- temporary file when it is deleted.
+ temporary file, with the file size specified in bytes, when it is deleted.
A value of zero logs all temporary file information, while positive
values log only files whose size is greater than or equal to
the specified amount of data.