Class DebugMessage
java.lang.Object
java.lang.Throwable
java.lang.Exception
br.net.dd.netherwingcore.common.logging.Message
br.net.dd.netherwingcore.common.logging.DebugMessage
- All Implemented Interfaces:
Detail, Serializable
A class representing a debug message within the application.
This class extends the Message class and is specifically used
to handle messages at the debug level. It helps differentiate
debug-related logs from other log levels in the system.
Usage example:
DebugMessage debugMessage = new DebugMessage("Debugging application...");
System.out.println(debugMessage.toString());
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDebugMessage(String message) Constructs a new DebugMessage with the provided message content. -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
DebugMessage
Constructs a new DebugMessage with the provided message content. The log level is automatically set toLevel.DEBUG.- Parameters:
message- The debug message content to be logged or processed.
-