Skip to content

Commit c40c95e

Browse files
committed
Document logging settings - cosmetics
Resolves #1974
1 parent 9befdd0 commit c40c95e

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

doc/reference/reference_lua/log.rst

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,21 +61,21 @@ Below is a list of all ``log`` functions.
6161

6262
* ``level``: Specifies the level of detail the log has.
6363

64-
See also: :ref:`log_level <cfg_logging-log_level>`.
64+
Learn more: :ref:`log_level <cfg_logging-log_level>`.
6565

6666
* ``log``: Specifies where to send the log's output, for example,
6767
to a file, pipe, or system logger.
6868

69-
See also: :ref:`log <cfg_logging-log>`.
69+
Learn more: :ref:`log <cfg_logging-log>`.
7070

7171
* ``nonblock``: If **true**, Tarantool does not block during logging when the system
7272
is not ready for writing, and drops the message instead.
7373

74-
See also: :ref:`log_nonblock <cfg_logging-log_nonblock>`.
74+
Learn more: :ref:`log_nonblock <cfg_logging-log_nonblock>`.
7575

7676
* ``format``: Specifies the log format: 'plain' or 'json'.
7777

78-
See also: :ref:`log_format <cfg_logging-log_format>`.
78+
Learn more: :ref:`log_format <cfg_logging-log_format>`.
7979

8080
The example below shows how to set the log level to 'debug' and how to send the resulting log
8181
to the 'tarantool.log' file:
@@ -121,7 +121,6 @@ Below is a list of all ``log`` functions.
121121

122122
.. code-block:: lua
123123
124-
box.cfg{}
125124
log = require('log')
126125
log.error({500,'Internal error'})
127126

0 commit comments

Comments
 (0)