Fix to surface-level output for NCEP GFS. Keep only the 2 and 10 m fields,
[WPS.git] / geogrid / src / wrf_debug.F
blob1f7dd030a2fe13a8d1921bc88822077640de86c8
1 subroutine wrf_debug(i, msg)
3    implicit none
5    ! Arguments
6    integer, intent(in) :: i
7    character (len=*), intent(in) :: msg
9    write(6,*) 'WRF_DEBUG:'//msg
11 end subroutine wrf_debug
14 subroutine wrf_message(msg)
16    implicit none
18    ! Arguments
19    character (len=*), intent(in) :: msg
21    write(6,*) 'WRF_MESSAGE:'//msg
23 end subroutine wrf_message
26 subroutine wrf_error_fatal(msg)
28    implicit none
30    ! Arguments
31    character (len=*), intent(in) :: msg
33    write(6,*) 'WRF_ERROR_FATAL:'//msg
35    stop
37 end subroutine wrf_error_fatal
40 subroutine wrf_error_fatal3(msg)
42    implicit none
44    ! Arguments
45    character (len=*), intent(in) :: msg
47    write(6,*) 'WRF_ERROR_FATAL:'//msg
49    stop
51 end subroutine wrf_error_fatal3