Package com.zeroc.Ice
Class LogMessage
java.lang.Object
com.zeroc.Ice.LogMessage
- All Implemented Interfaces:
Serializable,Cloneable
A complete log message.
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe log message itself.longThe date and time when theLoggerreceived this message, expressed as the number of microseconds since the Unix Epoch (00:00:00 UTC on 1 January 1970)For a message of type trace, the trace category of this log message; otherwise, the empty string.The type of message sent to theLogger. -
Constructor Summary
ConstructorsConstructorDescriptionLogMessage(LogMessageType type, long timestamp, String traceCategory, String message) -
Method Summary
Modifier and TypeMethodDescriptionclone()booleaninthashCode()static LogMessageice_read(InputStream istr) static Optional<LogMessage>ice_read(InputStream istr, int tag) voidice_readMembers(InputStream istr) static voidice_write(OutputStream ostr, int tag, LogMessage v) static voidice_write(OutputStream ostr, int tag, Optional<LogMessage> v) static voidice_write(OutputStream ostr, LogMessage v) voidice_writeMembers(OutputStream ostr)
-
Field Details
-
type
The type of message sent to theLogger. -
timestamp
public long timestampThe date and time when theLoggerreceived this message, expressed as the number of microseconds since the Unix Epoch (00:00:00 UTC on 1 January 1970) -
traceCategory
For a message of type trace, the trace category of this log message; otherwise, the empty string. -
message
The log message itself.
-
-
Constructor Details
-
LogMessage
public LogMessage() -
LogMessage
-
-
Method Details