Merge branch 'release-v4.6.0'
[WPS.git] / geogrid / src / wrf_debug.F
blob91660f2d518bdbddf5912cbc78d78670d264a0da
1 subroutine wrf_debug(i, msg)
3    use gridinfo_module
5    implicit none
7    ! Arguments
8    integer, intent(in) :: i
9    character (len=*), intent(in) :: msg
11    if (debug_level > 0) then
12       write(6,*) 'WRF_DEBUG:'//msg
13    end if
15 end subroutine wrf_debug
18 subroutine wrf_message(msg)
20    implicit none
22    ! Arguments
23    character (len=*), intent(in) :: msg
25    write(6,*) 'WRF_MESSAGE:'//msg
27 end subroutine wrf_message
30 subroutine wrf_error_fatal(msg)
32    implicit none
34    ! Arguments
35    character (len=*), intent(in) :: msg
37    write(6,*) 'WRF_ERROR_FATAL:'//msg
39    stop
41 end subroutine wrf_error_fatal
44 subroutine wrf_error_fatal3(msg)
46    implicit none
48    ! Arguments
49    character (len=*), intent(in) :: msg
51    write(6,*) 'WRF_ERROR_FATAL:'//msg
53    stop
55 end subroutine wrf_error_fatal3