Skip to content

Commit 8a3f31d

Browse files
committed
level_logger: correction of a typo mentioned by @ivan-pi
1 parent 6fb16bc commit 8a3f31d

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

src/stdlib_logger.f90

+12-12
Original file line numberDiff line numberDiff line change
@@ -833,9 +833,9 @@ subroutine log_debug( self, message, module, procedure )
833833
character(len=*), intent(in) :: message
834834
!! A string to be written to log_unit
835835
character(len=*), intent(in), optional :: module
836-
!! The name of the module contining the current invocation of `log_information`
836+
!! The name of the module containing the current invocation of `log_information`
837837
character(len=*), intent(in), optional :: procedure
838-
!! The name of the procedure contining the current invocation of
838+
!! The name of the procedure containing the current invocation of
839839
!! `log_information`
840840

841841
if ( self % level > debug_level ) return
@@ -897,9 +897,9 @@ subroutine log_error( self, message, module, procedure, stat, errmsg )
897897
character(len=*), intent(in) :: message
898898
!! A string to be written to log_unit
899899
character(len=*), intent(in), optional :: module
900-
!! The name of the module contining the current invocation of `log_error`
900+
!! The name of the module containing the current invocation of `log_error`
901901
character(len=*), intent(in), optional :: procedure
902-
!! The name of the procedure contining the current invocation of `log_error`
902+
!! The name of the procedure containing the current invocation of `log_error`
903903
integer, intent(in), optional :: stat
904904
!! The value of the `stat` specifier returned by a Fortran statement
905905
character(len=*), intent(in), optional :: errmsg
@@ -988,9 +988,9 @@ subroutine log_information( self, message, module, procedure )
988988
character(len=*), intent(in) :: message
989989
!! A string to be written to log_unit
990990
character(len=*), intent(in), optional :: module
991-
!! The name of the module contining the current invocation of `log_information`
991+
!! The name of the module containing the current invocation of `log_information`
992992
character(len=*), intent(in), optional :: procedure
993-
!! The name of the procedure contining the current invocation of
993+
!! The name of the procedure containing the current invocation of
994994
!! `log_information`
995995

996996
if ( self % level > information_level ) return
@@ -1043,9 +1043,9 @@ subroutine log_io_error( self, message, module, procedure, iostat, &
10431043
character(len=*), intent(in) :: message
10441044
!! A string to be written to LOG_UNIT
10451045
character(len=*), intent(in), optional :: module
1046-
!! The name of the module contining the current invocation of REPORT_ERROR
1046+
!! The name of the module containing the current invocation of REPORT_ERROR
10471047
character(len=*), intent(in), optional :: procedure
1048-
!! The name of the procedure contining the current invocation of REPORT_ERROR
1048+
!! The name of the procedure containing the current invocation of REPORT_ERROR
10491049
integer, intent(in), optional :: iostat
10501050
!! The value of the IOSTAT specifier returned by a Fortran I/O statement
10511051
character(len=*), intent(in), optional :: iomsg
@@ -1131,9 +1131,9 @@ subroutine log_message( self, message, module, procedure, prefix )
11311131
character(len=*), intent(in) :: message
11321132
!! A string to be written to log_unit
11331133
character(len=*), intent(in), optional :: module
1134-
!! The name of the module contining the current invocation of `log_message`
1134+
!! The name of the module containing the current invocation of `log_message`
11351135
character(len=*), intent(in), optional :: procedure
1136-
!! The name of the procedure contining the current invocation of `log_message`
1136+
!! The name of the procedure containing the current invocation of `log_message`
11371137
character(len=*), intent(in), optional :: prefix
11381138
!! To be prepended to message as `prefix // ': ' // message`.
11391139

@@ -1468,9 +1468,9 @@ subroutine log_warning( self, message, module, procedure )
14681468
character(len=*), intent(in) :: message
14691469
!! A string to be written to LOG_UNIT
14701470
character(len=*), intent(in), optional :: module
1471-
!! The name of the module contining the current invocation of `log_warning`
1471+
!! The name of the module containing the current invocation of `log_warning`
14721472
character(len=*), intent(in), optional :: procedure
1473-
!! The name of the procedure contining the current invocation of `log_warning`
1473+
!! The name of the procedure containing the current invocation of `log_warning`
14741474

14751475
if ( self % level > warning_level ) return
14761476

0 commit comments

Comments
 (0)