org.jboss.logging.annotations.Message Java Examples
The following examples show how to use
org.jboss.logging.annotations.Message.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: AuditLogger.java From activemq-artemis with Apache License 2.0 | 4 votes |
@LogMessage(level = Logger.Level.INFO) @Message(id = 601217, value = "User {0} is resetting all groups on target resource: {1} {2}", format = Message.Format.MESSAGE_FORMAT) void resetAllGroups(String user, Object source, Object... args);
Example #2
Source File: ActiveMQClientMessageBundle.java From activemq-artemis with Apache License 2.0 | 4 votes |
@Message(id = 219047, value = "nodes have different node names") IllegalArgumentException nodeHaveDifferentNames();
Example #3
Source File: CoreMessageLogger.java From lams with GNU General Public License v2.0 | 4 votes |
@LogMessage(level = WARN) @Message(value = "Discriminator column has to be defined in the root entity, it will be ignored in subclass: %s", id = 133) void invalidDiscriminatorAnnotation(String className);
Example #4
Source File: HostControllerLogger.java From wildfly-core with GNU Lesser General Public License v2.1 | 4 votes |
@Message(id=133, value = "Couldn't initialize a SAX driver for the XMLReader") RuntimeException cannotInitializeSaxDriver();
Example #5
Source File: PatchLogger.java From wildfly-core with GNU Lesser General Public License v2.1 | 4 votes |
@Message(id = 23, value = "Failed to show history of patches") OperationFailedException failedToShowHistory(@Cause Throwable cause);
Example #6
Source File: UndertowMessages.java From lams with GNU General Public License v2.0 | 4 votes |
@Message(id = 116, value = "CONNECT not supported by this connector") IllegalStateException connectNotSupported();
Example #7
Source File: ProviderLogging.java From smallrye-reactive-messaging with Apache License 2.0 | 4 votes |
@LogMessage(level = Logger.Level.ERROR) @Message(id = 212, value = "Unable to initialize mediator: %s") void unableToInitializeMediator(String methodAsString, @Cause Throwable t);
Example #8
Source File: UndertowMessages.java From lams with GNU General Public License v2.0 | 4 votes |
@Message(id = 4, value = "getResponseChannel() has already been called") IllegalStateException responseChannelAlreadyProvided();
Example #9
Source File: ActiveMQStompProtocolMessageBundle.java From activemq-artemis with Apache License 2.0 | 4 votes |
@Message(id = 339027, value = "Cannot create a subscriber on the durable subscription if the client-id of the connection is not set") IllegalStateException missingClientID();
Example #10
Source File: ActiveMQServerLogger.java From activemq-artemis with Apache License 2.0 | 4 votes |
@LogMessage(level = Logger.Level.ERROR) @Message(id = 224024, value = "Stomp Error, tx already exist! {0}", format = Message.Format.MESSAGE_FORMAT) void stompErrorTXExists(String txID);
Example #11
Source File: JsrWebSocketLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = Logger.Level.INFO) @Message(id = 26004, value = "Adding annotated client endpoint %s") void addingAnnotatedClientEndpoint(Class<?> endpoint);
Example #12
Source File: ServerLogger.java From wildfly-core with GNU Lesser General Public License v2.1 | 4 votes |
@LogMessage(level = INFO) @Message(id = 41, value = "Creating http management service using socket-binding (%s) and secure-socket-binding (%s)") void creatingHttpManagementServiceOnSocketAndSecureSocket(String socketName, String secureSocketName);
Example #13
Source File: AuditLogger.java From activemq-artemis with Apache License 2.0 | 4 votes |
@LogMessage(level = Logger.Level.INFO) @Message(id = 601136, value = "User {0} is removing notification listener on target resource: {1} {2}", format = Message.Format.MESSAGE_FORMAT) void removeNotificationListener(String user, Object source, Object... args);
Example #14
Source File: UndertowLogger.java From lams with GNU General Public License v2.0 | 4 votes |
@LogMessage(level = ERROR) @Message(id = 5081, value = "Response has already been started, cannot proxy request %s") void cannotProxyStartedRequest(HttpServerExchange exchange);
Example #15
Source File: ActiveMQMessageBundle.java From activemq-artemis with Apache License 2.0 | 4 votes |
@Message(id = 229046, value = "invalid value: {0} count must be greater than 0", format = Message.Format.MESSAGE_FORMAT) IllegalArgumentException greaterThanZero(Integer count);
Example #16
Source File: ActiveMQClientMessageBundle.java From activemq-artemis with Apache License 2.0 | 4 votes |
@Message(id = 219028, value = "Timeout waiting for LargeMessage Body") ActiveMQLargeMessageException timeoutOnLargeMessage();
Example #17
Source File: ActiveMQServerLogger.java From activemq-artemis with Apache License 2.0 | 4 votes |
@LogMessage(level = Logger.Level.INFO) @Message(id = 221000, value = "{0} Message Broker is starting with configuration {1}", format = Message.Format.MESSAGE_FORMAT) void serverStarting(String type, Configuration configuration);
Example #18
Source File: CoreMessageLogger.java From lams with GNU General Public License v2.0 | 4 votes |
@LogMessage(level = INFO) @Message(value = "Using dialect: %s", id = 400) void usingDialect(Dialect dialect);
Example #19
Source File: AuditLogger.java From activemq-artemis with Apache License 2.0 | 4 votes |
@LogMessage(level = Logger.Level.INFO) @Message(id = 601272, value = "User {0} is getting disk store usage on target resource: {1} {2}", format = Message.Format.MESSAGE_FORMAT) void getDiskStoreUsage(String user, Object source, Object... args);
Example #20
Source File: UndertowConnectorLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = ERROR) @Message(id = 5080, value = "HttpServerExchange cannot have both async IO resumed and dispatch() called in the same cycle") void resumedAndDispatched();
Example #21
Source File: UndertowMessages.java From lams with GNU General Public License v2.0 | 4 votes |
@Message(id = 30, value = "User %s successfully authenticated.") String userAuthenticated(final String userName);
Example #22
Source File: AuditLogger.java From activemq-artemis with Apache License 2.0 | 4 votes |
@LogMessage(level = Logger.Level.INFO) @Message(id = 601725, value = "User {0} browsed {2} messages from queue {1}", format = Message.Format.MESSAGE_FORMAT) void browseMessagesSuccess(String user, String queueName, int numMessages);
Example #23
Source File: UndertowMessages.java From lams with GNU General Public License v2.0 | 4 votes |
@Message(id = 91, value = "Buffer has already been freed") IllegalStateException bufferAlreadyFreed();
Example #24
Source File: SmallRyeMetricsLogging.java From smallrye-metrics with Apache License 2.0 | 4 votes |
@LogMessage(level = Logger.Level.DEBUG) @Message(id = 1101, value = "Metric producer method discovered: %s") void producerMethodDiscovered(AnnotatedMethod<?> method);
Example #25
Source File: UndertowConnectorMessages.java From quarkus-http with Apache License 2.0 | 4 votes |
@Message(id = 105, value = "HTTP2 frame to large") IOException http2FrameTooLarge();
Example #26
Source File: ActiveMQMessageBundle.java From activemq-artemis with Apache License 2.0 | 4 votes |
@Message(id = 229222, value = "Failed to find login module entry {0} from JAAS configuration", format = Message.Format.MESSAGE_FORMAT) ActiveMQIllegalStateException failedToFindLoginModuleEntry(String entry);
Example #27
Source File: UndertowConnectorMessages.java From quarkus-http with Apache License 2.0 | 4 votes |
@Message(id = 42, value = "Could not decode trailers in HTTP request") IOException couldNotDecodeTrailers();
Example #28
Source File: ActiveMQServerLogger.java From activemq-artemis with Apache License 2.0 | 4 votes |
@LogMessage(level = Logger.Level.WARN) @Message(id = 222099, value = "Bridge {0} is unable to connect to destination. It will be disabled.", format = Message.Format.MESSAGE_FORMAT) void errorConnectingBridge(@Cause Exception e, Bridge bridge);
Example #29
Source File: ControllerLogger.java From wildfly-core with GNU Lesser General Public License v2.1 | 4 votes |
@LogMessage(level = Level.WARN) @Message(id = 405, value = "Couldn't find a transformer to %s, falling back to %s") void couldNotFindTransformerRegistryFallingBack(ModelVersion currentVersion, ModelVersion fallbackVersion);
Example #30
Source File: BootableJarLogger.java From wildfly-core with GNU Lesser General Public License v2.1 | 4 votes |
@LogMessage(level = DEBUG) @Message(id = 4, value = "Null controller client, exiting") void nullController();