choose correct output format for debug_verbosity: integer instead of logical
This commit is contained in:
parent
790dbed1e4
commit
6ca8942f62
|
@ -128,7 +128,7 @@ subroutine debug_init()
|
||||||
|
|
||||||
if (debug_verbosity > 0) then
|
if (debug_verbosity > 0) then
|
||||||
!$OMP CRITICAL (write2out)
|
!$OMP CRITICAL (write2out)
|
||||||
write(6,'(a24,x,l)') 'verbose: ',debug_verbosity
|
write(6,'(a24,x,i1)') 'verbose: ',debug_verbosity
|
||||||
write(6,'(a24,x,l)') 'selective: ',debug_selectiveDebugger
|
write(6,'(a24,x,l)') 'selective: ',debug_selectiveDebugger
|
||||||
!$OMP END CRITICAL (write2out)
|
!$OMP END CRITICAL (write2out)
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in New Issue