Class LogStore.Entry
java.lang.Object
ai.attackframework.tools.burp.ui.log.LogStore.Entry
- All Implemented Interfaces:
Serializable
- Enclosing class:
LogStore
Minimal event; repeats track consecutive duplicates.
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionEntry(LocalDateTime ts, LogStore.Level level, String message) Creates a log entry with an initial repeat count of 1. -
Method Summary
Modifier and TypeMethodDescriptionintrepeats()Number of consecutive duplicates represented by this entry (>= 1).
-
Field Details
-
ts
-
level
-
message
-
-
Constructor Details
-
Entry
Creates a log entry with an initial repeat count of 1.- Parameters:
ts- timestamp of the event (required)level- log level (required)message- log message (nullable)
-
-
Method Details
-
repeats
public int repeats()Number of consecutive duplicates represented by this entry (>= 1).
-