Add log-level config option

This commit is contained in:
laurenceisla
2021-07-21 14:40:34 -05:00
committed by GitHub
parent 204b0ed259
commit a7cddd8ece
2 changed files with 29 additions and 1 deletions
+23 -1
View File
@@ -43,6 +43,7 @@ server-host String !4
server-port Int 3000
server-unix-socket String
server-unix-socket-mode String 660
log-level String error
openapi-mode String follow-privileges
openapi-server-proxy-uri String
jwt-secret String
@@ -176,12 +177,33 @@ server-unix-socket-mode
server-unix-socket-mode = "660"
.. _log-level:
log-level
---------
Specifies the level of information to be logged while running PostgREST.
.. code:: bash
# Only startup and db connection recovery messages are logged
log-level = "crit"
# All the "crit" level events plus server errors (status 5xx) are logged
log-level = "error"
# All the "error" level events plus request errors (status 4xx) are logged
log-level = "warning"
# All the "warning" level events plus all requests (every status code) are logged
log-level "info"
.. _openapi-mode:
openapi-mode
------------
Specifies how the OpenAPI output should be displayed:
Specifies how the OpenAPI output should be displayed.
.. code:: bash
+6
View File
@@ -19,6 +19,9 @@ Added
* Config options for showing a full OpenAPI output regardless of the JWT role privileges and for disabling it altogether. See :ref:`openapi-mode`.
|br| -- `@steve-chavez <https://github.com/steve-chavez>`_
* Config option for logging level. See :ref:`log-level`.
|br| -- `@steve-chavez <https://github.com/steve-chavez>`_
* Documentation improvements
+ Added the :ref:`OPTIONS requests <options_requests>` section.
@@ -41,3 +44,6 @@ Changed
* Improved error message for a not found RPC on a stale schema (see :ref:`stale_function_signature`) and for the unsupported case of
overloaded functions with the same argument names but different types.
|br| -- `@laurenceisla <https://github.com/laurenceisla>`_
* Modified the default logging level from ``info`` to ``error``. See :ref:`log-level`.
|br| -- `@steve-chavez <https://github.com/steve-chavez>`_