Class InformationMessage

All Implemented Interfaces:
Detail, Serializable

public class InformationMessage extends Message
Represents an informational message in the logging system. This class extends the Message class, adding a predefined log Level to indicate that the message is informational in nature.

Example usage:

InformationMessage infoMessage = new InformationMessage("This is an informational log");
See Also:
  • Constructor Details

    • InformationMessage

      public InformationMessage(String message)
      Constructs a new InformationMessage with the specified message text.
      Parameters:
      message - the text of the informational message