subroutine wrf_debug(i, msg)

   use gridinfo_module

   implicit none

   ! Arguments
   integer, intent(in) :: i
   character (len=*), intent(in) :: msg

   if (debug_level > 0) then
      write(6,*) 'WRF_DEBUG:'//msg
   end if

end subroutine wrf_debug


subroutine wrf_message(msg)

   implicit none

   ! Arguments
   character (len=*), intent(in) :: msg

   write(6,*) 'WRF_MESSAGE:'//msg

end subroutine wrf_message


subroutine wrf_error_fatal(msg)

   implicit none

   ! Arguments
   character (len=*), intent(in) :: msg

   write(6,*) 'WRF_ERROR_FATAL:'//msg

   stop

end subroutine wrf_error_fatal


subroutine wrf_error_fatal3(msg)

   implicit none

   ! Arguments
   character (len=*), intent(in) :: msg

   write(6,*) 'WRF_ERROR_FATAL:'//msg

   stop

end subroutine wrf_error_fatal3