Carl Ponder
New member
I'm trying to debug a problem I'm seeing with MPAS-A running with PIO (and other components).
I'm able to insert statements like this
into the MPAS-A source, and see the corresponding output.
But if I insert this into the PIO source I don't see any output
suggesting to me that MPAS-A is re-mapping the I/O streams somehow.
Are there channels I can use with fortran/write and C/printf to make sure the output makes it to the screen?
I'm able to insert statements like this
Code:
call mpas_log_write('Debug checkpoint 2')
But if I insert this into the PIO source I don't see any output
Code:
write(6,*) "Debug checkpoint 2.1"
Are there channels I can use with fortran/write and C/printf to make sure the output makes it to the screen?