Skip to content

Commit 6eb9fea

Browse files
milancurcicjvdp1
andauthored
Update doc/specs/stdlib_logger.md
Co-authored-by: Jeremie Vandenplas <jeremie.vandenplas@gmail.com>
1 parent 466ace5 commit 6eb9fea

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

doc/specs/stdlib_logger.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -100,18 +100,18 @@ procedures are:
100100

101101
Procedure | Class | Description
102102
---------------------|------------|------------
103-
`add_log_file` | Subroutine | Opens a file using `newunit`, and adds the resulting unit to the `log_units` list
104-
`add_log_unit` | Subroutine | Adds an existing unit to the `log_units` list
105-
`configure` | Subroutine | Configures the details of the logging process
106-
`configuration` | Subroutine | Reports the details of the logging configuration
107-
`log_error` | Subroutine | Sends a message prepended by `'ERROR: '` optionally followed by a `stat` or `errmsg`
108-
`log_information` | Subroutine | Sends a message prepended by `'INFO: '`
109-
`log_io_error` | Subroutine | Sends a message prepended by `'I/O ERROR: '` optionally followed by an `iostat` or `iomsg`
110-
`log_message` | Subroutine | Sends a message
111-
`log_text_error` | Subroutine | Sends a message describing an error found in a line of text
112-
`log_units_assigned` | Function | Returns the number of active I/O units in `log_units`
113-
`log_warning` | Subroutine | Sends a message prepended by `'WARN: '`
114-
`remove_log_unit` | Subroutine | Removes the `unit` number from the `log_units` array
103+
[`add_log_file`](./stdlib_logger.html#add_log_file-open-a-file-and-add-its-unit-to-self-log_units) | Subroutine | Opens a file using `newunit`, and adds the resulting unit to the `log_units` list
104+
[`add_log_unit`](./stdlib_logger.html#add_log_unit-add-a-unit-to-the-array-self-log_units) | Subroutine | Adds an existing unit to the `log_units` list
105+
[`configuration`](./stdlib_logger.html#configuration-report-a-loggers-configuration) | Subroutine | Reports the details of the logging configuration
106+
[`configure`](./stdlib_logger.html#configure-configure-the-logging-process) | Subroutine | Configures the details of the logging process
107+
[`log_error`](./stdlib_logger.html#log_error-writes-the-string-message-to-self-log_units) | Subroutine | Sends a message prepended by `'ERROR: '` optionally followed by a `stat` or `errmsg`
108+
[`log_information`](./stdlib_logger.html#log_information-writes-the-string-message-to-self-log_units) | Subroutine | Sends a message prepended by `'INFO: '`
109+
[`log_io_error`](./stdlib_logger.html#log_io_error-write-the-string-message-to-self-log_units) | Subroutine | Sends a message prepended by `'I/O ERROR: '` optionally followed by an `iostat` or `iomsg`
110+
[`log_message`](./stdlib_logger.html#log_message-write-the-string-message-to-self-log_units) | Subroutine | Sends a message
111+
[`log_text_error`](./stdlib_logger.html#log_text_error-send-a-message-to-self-log_units-describing-an-error) | Subroutine | Sends a message describing an error found in a line of text
112+
[`log_units_assigned`](./stdlib_logger.html#log_units_assigned-returns-the-number-of-active-io-units) | Function | Returns the number of active I/O units in `log_units`
113+
[`log_warning`](./stdlib_logger.html#log_warning-write-the-string-message-to-log_units) | Subroutine | Sends a message prepended by `'WARN: '`
114+
[`remove_log_unit`](./stdlib_logger.html#remove_log_unit-remove-unit-from-self-log_units) | Subroutine | Removes the `unit` number from the `log_units` array
115115

116116
## Specification of the `logger_type` methods
117117

0 commit comments

Comments
 (0)