Interface Log

  • All Superinterfaces:
    BasicLogger
    All Known Implementing Classes:
    Log_$logger

    @MessageLogger(projectCode="IPROTO")
    public interface Log
    extends BasicLogger
    Author:
    anistor@redhat.com
    • Method Detail

      • fieldReadOutOfSequence

        @LogMessage(level=WARN)
        @Message(value="Field %s was read out of sequence leading to sub-optimal performance",
                 id=1)
        void fieldReadOutOfSequence​(String fieldName)
      • fieldWriteOutOfSequence

        @LogMessage(level=WARN)
        @Message(value="Field %s was written out of sequence and will lead to sub-optimal read performance",
                 id=2)
        void fieldWriteOutOfSequence​(String fieldName)
      • messageTruncated

        @Message(value="Input data ended unexpectedly in the middle of a field. The message is corrupt.",
                 id=3)
        MalformedProtobufException messageTruncated​(@Cause
                                                    Throwable cause)
      • negativeLength

        @Message(value="Encountered a length delimited field with negative length.",
                 id=5)
        MalformedProtobufException negativeLength()
      • globalLimitExceeded

        @Message(value="Protobuf message appears to be larger than the configured limit. The message is possibly corrupt.",
                 id=6)
        MalformedProtobufException globalLimitExceeded()
      • outOfWriteBufferSpace

        @Message(value="Ran out of buffer space",
                 id=7)
        IOException outOfWriteBufferSpace​(@Cause
                                          Throwable cause)
      • maxNestedMessageDepth

        @Message(value="The nested message depth appears to be larger than the configured limit of \'%s\'.It is possible that the entity to marshall with type \'%s\' can have some circular dependencies.",
                 id=8)
        ProtoStreamException maxNestedMessageDepth​(int maxNestedMessageDepth,
                                                   Class<?> entityType)