knowledge Subroutine

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

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

Usage: call my_logger%knowledge(“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

Called by

proc~~knowledge~~CalledByGraph proc~knowledge logger_type%knowledge proc~dispatch dispatch proc~dispatch->proc~knowledge proc~flush_log_buffer flush_log_buffer proc~flush_log_buffer->proc~dispatch

Source Code

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