Interface Log

All Superinterfaces:
org.jboss.logging.BasicLogger
All Known Implementing Classes:
Log_$logger

@MessageLogger(projectCode="IPROTO") public interface Log extends org.jboss.logging.BasicLogger
Author:
[email protected]
  • Field Details

    • LOG

      static final Log LOG
  • Method Details

    • 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)
    • messageTruncated

      default MalformedProtobufException messageTruncated()
    • malformedVarint

      @Message(value="Encountered a malformed varint.", id=4) MalformedProtobufException malformedVarint()
    • 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)
    • notRepeatableField

      @Message(value="Not a repeatable field: %s#%s", id=9) IllegalStateException notRepeatableField(String clazz, String fieldOrMethod)
    • reservedName

      @Message(value="Name \'%s\' is reserved on `%s`", id=10) IllegalArgumentException reservedName(String name, String owner)
    • reservedNumber

      @Message(value="Number %d used by \'%s\' is reserved on \'%s\'", id=11) IllegalArgumentException reservedNumber(int number, String name, String owner)
    • unsupportedSyntax

      @Message(value="Unsupported protocol buffers syntax \'%s\'", id=12) IllegalArgumentException unsupportedSyntax(FileDescriptor.Syntax s)
    • parserException

      @Message(value="Error while parsing \'%s\': %s", id=13) DescriptorParserException parserException(String filename, String message)
    • abstractType

      @Message(value="The type %s of field %s of %s should not be abstract.", id=14) ProtoSchemaBuilderException abstractType(String canonicalName, String fieldName, String canonicalName1)
    • oneofCollision

      @Message(value="The field named \'%s\' of %s is a member of the \'%s\' oneof which collides with an existing field or oneof.", id=15) ProtoSchemaBuilderException oneofCollision(String fieldName, String name, String oneof)
    • oneofRepeatedOrRequired

      @Message(value="The field named \'%s\' of %s cannot be marked repeated or required since it is member of the \'%s\' oneof.", id=16) ProtoSchemaBuilderException oneofRepeatedOrRequired(String fieldName, String name, String oneof)
    • abstractClassNotAllowed

      @Message(value="Abstract classes are not allowed: \'%s\'", id=17) ProtoSchemaBuilderException abstractClassNotAllowed(String annotatedClassName)
    • localOrAnonymousClass

      @Message(value="Local or anonymous classes are not allowed. The class \'%s\' must be instantiable using an accessible no-argument constructor.", id=18) ProtoSchemaBuilderException localOrAnonymousClass(String annotatedClassName)
    • nonStaticInnerClass

      @Message(value="Non-static inner classes are not allowed. The class \'%s\' must be instantiable using an accessible no-argument constructor.", id=19) ProtoSchemaBuilderException nonStaticInnerClass(String annotatedClassName)
    • noDefaultEnum

      @Message(value="Invalid default value for field \'%s\' of Java type %s from class %s: the %s enum must have a 0 value", id=20) ProtoSchemaBuilderException noDefaultEnum(String fieldName, String canonicalName, String canonicalName1, String fullName)