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 @@ -513,15 +513,15 @@ Subroutine
513
513
#### Example
514
514
515
515
``` fortran
516
- module example_mod
517
- use stdlib_logger
518
- ...
519
- real, allocatable :: a(:)
520
- ...
521
- type(logger_type) :: logger
516
+ module example_mod
517
+ use stdlib_logger
518
+
519
+ real, allocatable :: a(:)
520
+
521
+ type(logger_type) :: logger
522
522
contains
523
- ...
524
- subroutine example_sub( selection )
523
+
524
+ subroutine example_sub( selection )
525
525
integer, intent(out) :: selection
526
526
character(128) :: errmsg, message
527
527
integer :: stat
@@ -531,10 +531,10 @@ Subroutine
531
531
"The user selected ", selection
532
532
call logger % log_information( message, &
533
533
module = 'EXAMPLE_MOD', procedure = 'EXAMPLE_SUB' )
534
- ...
535
- end subroutine example_sub
536
- ...
537
- end module example_mod
534
+
535
+ end subroutine example_sub
536
+
537
+ end module example_mod
538
538
```
539
539
540
540
### ` log_io_error ` - Write the string ` message ` to ` self % log_units `
You can’t perform that action at this time.
0 commit comments