Skip to content

Commit 466ace5

Browse files
authored
Apply suggestions from code review
1 parent e6c8f81 commit 466ace5

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

src/stdlib_logger.f90

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -681,6 +681,8 @@ end subroutine handle_write_failure
681681

682682

683683
subroutine log_error( self, message, module, procedure, stat, errmsg )
684+
!! version: experimental
685+
684686
!! Writes the string `message` to `self % log_units` with optional additional
685687
!! text.
686688
!! ([Specification](../specs/stdlib_logger.html#log_error-writes-the-string-message-to-self-log_units))
@@ -783,6 +785,8 @@ end subroutine log_error
783785

784786

785787
subroutine log_information( self, message, module, procedure )
788+
!! version: experimental
789+
786790
!! Writes the string `message` to `self % log_units` with optional additional
787791
!! text.
788792
!!([Specification](../page/specs/stdlib_logger.html#log_information-writes-the-string-message-to-self-log_units))
@@ -839,8 +843,11 @@ end subroutine log_information
839843

840844
subroutine log_io_error( self, message, module, procedure, iostat, &
841845
iomsg )
846+
!! version: experimental
847+
842848
!! Writes the string `message` to the `self % log_units` with optional
843849
!! additional text.
850+
!!([Specification](../page/specs/stdlib_logger.html#log_io_error-write-the-string-message-to-self-log_units))
844851
!!
845852
!!##### Behavior
846853
!!
@@ -1192,6 +1199,8 @@ end subroutine log_text_error
11921199

11931200

11941201
elemental function log_units_assigned(self)
1202+
!! version: experimental
1203+
11951204
!! Returns the number of units assigned to `self % log_units`
11961205
!!([Specification](../page/specs/stdlib_logger.html#log_units_assigned-returns-the-number-of-active-io-units))
11971206

@@ -1226,6 +1235,8 @@ end function log_units_assigned
12261235

12271236

12281237
subroutine log_warning( self, message, module, procedure )
1238+
!! version: experimental
1239+
12291240
!! Writes the string `message` to `self % log_units` with optional additional text.
12301241
!!([Specification](../page/specs/stdlib_logger.html#log_warning-write-the-string-message-to-log_units))
12311242

@@ -1279,6 +1290,8 @@ end subroutine log_warning
12791290

12801291

12811292
subroutine remove_log_unit( self, unit, close_unit, stat )
1293+
!! version: experimental
1294+
12821295
!! Remove the I/O unit from the self % log_units list. If `close_unit` is
12831296
!! present and `.true.` then the corresponding file is closed. If `unit` is
12841297
!! not in `log_units` then nothing is done. If `stat` is present it, by default,

0 commit comments

Comments
 (0)