Class LogMessageInfo
- java.lang.Object
-
- jetbrains.buildServer.serverSide.buildLog.LogMessageInfo
-
public class LogMessageInfo extends Object
Low level log message intended for read/write operations. For the higher level (model) analogue seeLogMessage
.
-
-
Constructor Summary
Constructors Constructor Description LogMessageInfo(LogMessageKind kind, byte status, long timestamp, CharSequence message, String blockType, String renderHint, int flowId, long blockFinishTimestamp, String tags, Integer anchor)
LogMessageInfo(LogMessageKind kind, byte status, long timestamp, CharSequence message, String blockType, String renderHint, int flowId, long blockFinishTimestamp, Collection<String> tags, Integer anchor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Integer
getAnchor()
long
getBlockFinishTimestamp()
String
getBlockType()
int
getEstimatedSizeBytes()
int
getFlowId()
LogMessageKind
getKind()
CharSequence
getMessage()
String
getRenderHint()
byte
getStatus()
String
getTags()
Collection<String>
getTagsList()
long
getTimestamp()
boolean
isInternal()
String
toString()
-
-
-
Constructor Detail
-
LogMessageInfo
public LogMessageInfo(@NotNull LogMessageKind kind, byte status, long timestamp, @NotNull CharSequence message, @NotNull String blockType, @NotNull String renderHint, int flowId, long blockFinishTimestamp, @NotNull String tags, @Nullable Integer anchor)
-
LogMessageInfo
public LogMessageInfo(@NotNull LogMessageKind kind, byte status, long timestamp, @NotNull CharSequence message, @NotNull String blockType, @NotNull String renderHint, int flowId, long blockFinishTimestamp, @Nullable Collection<String> tags, @Nullable Integer anchor)
-
-
Method Detail
-
getKind
@NotNull public LogMessageKind getKind()
-
getStatus
public byte getStatus()
-
getTimestamp
public long getTimestamp()
-
getMessage
@NotNull public CharSequence getMessage()
-
getBlockType
@NotNull public String getBlockType()
-
getRenderHint
@NotNull public String getRenderHint()
-
getFlowId
public int getFlowId()
-
getBlockFinishTimestamp
public long getBlockFinishTimestamp()
-
getTags
@NotNull public String getTags()
-
getAnchor
@Nullable public Integer getAnchor()
-
getTagsList
@NotNull public Collection<String> getTagsList()
-
getEstimatedSizeBytes
public int getEstimatedSizeBytes()
-
isInternal
public boolean isInternal()
-
-