File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -815,24 +815,24 @@ The result is the number of I/O units in
815815#### Example
816816
817817``` fortran
818- module example_mod
819- use stdlib_logger
820- ...
821- type(logger_type) :: logger
818+ module example_mod
819+ use stdlib_logger
820+
821+ type(logger_type) :: logger
822822 contains
823- ...
824- subroutine example_sub(unit, ...)
823+
824+ subroutine example_sub(unit, ...)
825825 integer, intent(in) :: unit
826- ...
826+
827827 integer, allocatable :: log_units(:)
828- ...
828+
829829 if ( logger % log_units_assigned() == 0 ) then
830830 call logger % add_log_unit( unit )
831831 end if
832- ...
833- end subroutine example_sub
834- ...
835- end module example_mod
832+
833+ end subroutine example_sub
834+
835+ end module example_mod
836836```
837837
838838### ` log_warning ` - write the string ` message ` to ` log_units `
You can’t perform that action at this time.
0 commit comments