verbose Subroutine

private subroutine verbose(self, message, module, procedure)

Log a message that will only be printed at the verbose level of verbosity

Usage: call my_logger%verbose(“MESSAGE”)

Type Bound

logger_type

Arguments

Type IntentOptional Attributes Name
class(logger_type), intent(in) :: self
character(len=*), intent(in) :: message
character(len=*), intent(in), optional :: module
character(len=*), intent(in), optional :: procedure

Source Code

   subroutine verbose(self, message, module, procedure)
      !! Log a message that will only be printed at the verbose level of verbosity
      !!
      !! Usage: call my_logger%verbose("MESSAGE")
      !!
      class(logger_type), intent(in) :: self
      character(*), intent(in) :: message
      character(*), intent(in), optional :: module, procedure
      call self%log("VERBOSE", message, module, procedure)
   end subroutine verbose