Interface ProviderLogging

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

@MessageLogger(projectCode="SRMSG", length=5) public interface ProviderLogging extends org.jboss.logging.BasicLogger
  • Field Details

  • Method Details

    • methodException

      @LogMessage(level=ERROR) @Message(id=200, value="The method %s has thrown an exception") void methodException(String methodAsString, @Cause Throwable cause)
    • messageProcessingException

      @LogMessage(level=ERROR) @Message(id=201, value="Error caught while processing a message in method %s") void messageProcessingException(String methodAsString, @Cause Throwable cause)
    • vertXInstanceCreated

      @LogMessage(level=INFO) @Message(id=202, value="Created new Vertx instance") void vertXInstanceCreated()
    • workerPoolCreated

      @LogMessage(level=INFO) @Message(id=203, value="Created worker pool named %s with concurrency of %d") void workerPoolCreated(String workerName, Integer count)
    • multiplePublisherFound

      @LogMessage(level=WARN) @Message(id=204, value="Multiple publisher found for %s, using the merge policy `ONE` takes the first found") void multiplePublisherFound(String source)
    • strictModeEnabled

      @LogMessage(level=DEBUG) @Message(id=205, value="Strict mode enabled") void strictModeEnabled()
    • scanningType

      @LogMessage(level=DEBUG) @Message(id=206, value="Scanning Type: %s") void scanningType(Class<?> javaClass)
    • reportWiringFailures

      @LogMessage(level=WARN) @Message(id=207, value="%s") void reportWiringFailures(String message)
    • connectorWithoutDownstream

      @LogMessage(level=WARN) @Message(id=208, value="The connector \'%s\' has no downstreams") void connectorWithoutDownstream(Wiring.Component component)
    • startGraphResolution

      @LogMessage(level=DEBUG) @Message(id=209, value="Beginning graph resolution, number of components detected: %d") void startGraphResolution(int size)
    • completedGraphResolution

      @LogMessage(level=DEBUG) @Message(id=210, value="Graph resolution completed in %d ns") void completedGraphResolution(long duration)
    • unableToCreateInvoker

      @LogMessage(level=ERROR) @Message(id=211, value="Unable to create invoker instance of %s") void unableToCreateInvoker(Class<?> invokerClass, @Cause Throwable t)
    • unableToInitializeMediator

      @LogMessage(level=ERROR) @Message(id=212, value="Unable to initialize mediator: %s") void unableToInitializeMediator(String methodAsString, @Cause Throwable t)
    • analyzingMediatorBean

      @LogMessage(level=INFO) @Message(id=224, value="Analyzing mediator bean: %s") void analyzingMediatorBean(jakarta.enterprise.inject.spi.Bean<?> bean)
    • foundIncomingConnectors

      @LogMessage(level=DEBUG) @Message(id=226, value="Found incoming connectors: %s") void foundIncomingConnectors(Set<String> connectors)
    • foundOutgoingConnectors

      @LogMessage(level=DEBUG) @Message(id=227, value="Found outgoing connectors: %s") void foundOutgoingConnectors(Set<String> connectors)
    • skippingMPConfig

      @LogMessage(level=INFO) @Message(id=228, value="No MicroProfile Config found, skipping") void skippingMPConfig()
    • channelManagerInitializing

      @LogMessage(level=DEBUG) @Message(id=229, value="Channel manager initializing...") void channelManagerInitializing()
    • unableToCreatePublisherOrSubscriber

      @LogMessage(level=ERROR) @Message(id=230, value="Unable to create the publisher or subscriber during initialization") void unableToCreatePublisherOrSubscriber(@Cause Throwable t)
    • incomingChannelDisabled

      @LogMessage(level=INFO) @Message(id=231, value="Incoming channel `%s` disabled by configuration") void incomingChannelDisabled(String channel)
    • outgoingChannelDisabled

      @LogMessage(level=INFO) @Message(id=232, value="Outgoing channel `%s` disabled by configuration") void outgoingChannelDisabled(String channel)
    • unableToExtractIngestedPayloadType

      @LogMessage(level=WARN) @Message(id=233, value="Unable to extract the ingested payload type for method `%s`, the reason is: %s") void unableToExtractIngestedPayloadType(String method, String reason)
    • failureEmittingMessage

      @LogMessage(level=WARN) @Message(id=234, value="Failed to emit a Message to the channel") void failureEmittingMessage(@Cause Throwable t)
    • startMaterialization

      @LogMessage(level=DEBUG) @Message(id=235, value="Beginning materialization") void startMaterialization()
    • materializationCompleted

      @LogMessage(level=DEBUG) @Message(id=236, value="Materialization completed in %d ns") void materializationCompleted(long duration)
    • deprecatedNamed

      @LogMessage(level=WARN) @Message(id=237, value="Use of @jakarta.inject.Named in Reactive Messaging is deprecated, use @io.smallrye.common.annotation.Identifier instead") @Once void deprecatedNamed()
    • noExecutionHolderDisablingBlockingSupport

      @LogMessage(level=INFO) @Message(id=238, value="No ExecutionHolder, disabling @Blocking support") void noExecutionHolderDisablingBlockingSupport()
    • cannotSpecifyBothClientOptionsNameAndClientSslContextName

      @Message(id=239, value="Cannot specify both client-options-name and client-ssl-context-name") IllegalStateException cannotSpecifyBothClientOptionsNameAndClientSslContextName()
    • couldFindSslContextWithIdentifier

      @Message(id=240, value="Could not find an SSLContext bean with the @Identifier=%s") IllegalStateException couldFindSslContextWithIdentifier(String sslContextIdentifier)
    • pausingRequestingMessages

      @LogMessage(level=DEBUG) @Message(id=241, value="Pausing polling messages for channel %s, queue size %s >= %s") void pausingRequestingMessages(String channel, int size, int maxQueueSize)
    • resumingRequestingMessages

      @LogMessage(level=DEBUG) @Message(id=242, value="Resuming polling messages for channel %s, queue size %s <= %s") void resumingRequestingMessages(String channel, int size, int halfMaxQueueSize)