Record Class LoggersActuator.LoggerInfo
java.lang.Object
java.lang.Record
io.camunda.zeebe.qa.util.actuator.LoggersActuator.LoggerInfo
- Enclosing interface:
LoggersActuator
-
Constructor Summary
ConstructorsConstructorDescriptionLoggerInfo(String configuredLevel, String effectiveLevel) Creates an instance of aLoggerInforecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theconfiguredLevelrecord component.Returns the value of theeffectiveLevelrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
LoggerInfo
Creates an instance of aLoggerInforecord class.- Parameters:
configuredLevel- the value for theconfiguredLevelrecord componenteffectiveLevel- the value for theeffectiveLevelrecord component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
configuredLevel
Returns the value of theconfiguredLevelrecord component.- Returns:
- the value of the
configuredLevelrecord component
-
effectiveLevel
Returns the value of theeffectiveLevelrecord component.- Returns:
- the value of the
effectiveLevelrecord component
-