We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87006f6 commit 4995d00Copy full SHA for 4995d00
doc/specs/stdlib_logger.md
@@ -176,15 +176,15 @@ an `intent(in)` argument. It shall be the name of the file to be opened.
176
```fortran
177
program demo_global_logger
178
use stdlib_logger, global => global_logger
179
- ...
+
180
integer :: unit, stat
181
182
call global % add_log_file( 'error_log.txt', unit, &
183
position='asis', stat=stat )
184
if ( stat /= success ) then
185
error stop 'Unable to open "error_log.txt".'
186
end if
187
188
end program demo_global_logger
189
```
190
0 commit comments