org.jboss.logging.annotations.LogMessage Java Examples
The following examples show how to use
org.jboss.logging.annotations.LogMessage.
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: UndertowLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = DEBUG) @Message(id = 5046, value = "Registering context %s, for node %s, with aliases %s") void registeringContext(String contextPath, String jvmRoute, List<String> aliases);
Example #2
Source File: UndertowLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = WARN) @Message(id = 5072, value = "Thread %s (id=%s) has been active for %s milliseconds (since %s) to serve the same request for %s and may be stuck (configured threshold for this StuckThreadDetectionValve is %s seconds). There is/are %s thread(s) in total that are monitored by this Valve and may be stuck.") void stuckThreadDetected(String threadName, long threadId, long active, Date start, String requestUri, int threshold, int stuckCount, @Cause Throwable stackTrace);
Example #3
Source File: UndertowConnectorLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = DEBUG) @Message(id = 5056, value = "Received node load in STATUS message, node jvmRoute: %s, load: %s") void receivedNodeLoad(String jvmRoute, String loadValue);
Example #4
Source File: UndertowConnectorLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = ERROR) @Message(id = 5071, value = "Undertow request failed %s") void undertowRequestFailed(@Cause Throwable t, Object exchange);
Example #5
Source File: UndertowLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = ERROR) @Message(id = 5081, value = "Response has already been started, cannot proxy request %s") void cannotProxyStartedRequest(HttpServerExchange exchange);
Example #6
Source File: UndertowLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = ERROR) @Message(id = 5093, value = "Failed to run task") void failedToRunTask(@Cause Throwable t);
Example #7
Source File: SmallRyeGraphQLServerLogging.java From smallrye-graphql with Apache License 2.0 | 4 votes |
@LogMessage(level = Logger.Level.WARN) @Message(id = 10001, value = "No GraphQL methods found. Try annotating your methods with @Query or @Mutation") void noGraphQLMethodsFound();
Example #8
Source File: UndertowLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = ERROR) @Message(id = 5069, value = "Failed to write JDBC access log") void failedToWriteJdbcAccessLog(@Cause Exception e);
Example #9
Source File: UndertowConnectorLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = ERROR) @Message(id = 5032, value = "Listener not making progress on framed channel, closing channel to prevent infinite loop") void listenerNotProgressing();
Example #10
Source File: SmallRyeGraphQLServerLogging.java From smallrye-graphql with Apache License 2.0 | 4 votes |
@LogMessage(level = Logger.Level.WARN) @Message(id = 10000, value = "Schema is null, or it has no operations. Not bootstrapping SmallRye GraphQL") void emptyOrNullSchema();
Example #11
Source File: UndertowConnectorLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = ERROR) @Message(id = 5067, value = "X param in wrong format. Needs to be 'x-#(...)'") void extendedAccessLogBadXParam();
Example #12
Source File: UndertowLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = ERROR) @Message(id = 5050, value = "Failed to process management request") void failedToProcessManagementReq(@Cause Exception e);
Example #13
Source File: UndertowLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = DEBUG) @Message(id = 5049, value = "NodeConfig created: connectionURI: %s, balancer: %s, load balancing group: %s, jvmRoute: %s, flushPackets: %s, flushwait: %s, ping: %s," + "ttl: %s, timeout: %s, maxConnections: %s, cacheConnections: %s, requestQueueSize: %s, queueNewRequests: %s") void nodeConfigCreated(URI connectionURI, String balancer, String domain, String jvmRoute, boolean flushPackets, int flushwait, int ping, long ttl, int timeout, int maxConnections, int cacheConnections, int requestQueueSize, boolean queueNewRequests);
Example #14
Source File: SmallRyeGraphQLServerLogging.java From smallrye-graphql with Apache License 2.0 | 4 votes |
@LogMessage(level = Logger.Level.DEBUG) @Message(id = 13003, value = "Using %s service for object lookups") void usingLookupService(String name);
Example #15
Source File: UndertowConnectorLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = DEBUG) @Message(id = 5009, value = "A mandatory token %s is missing from the request.") void missingAuthorizationToken(final String tokenName);
Example #16
Source File: UndertowLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = ERROR) @Message(id = 5091, value = "Failed to initialize DirectByteBufferDeallocator") void directBufferDeallocatorInitializationFailed(@Cause Throwable t);
Example #17
Source File: UndertowLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = INFO) @Message(id = 5045, value = "Registering context %s, for node %s") void registeringContext(String contextPath, String jvmRoute);
Example #18
Source File: UndertowLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = INFO) @Message(id = 5044, value = "Removing node %s") void removingNode(String jvmRoute);
Example #19
Source File: UndertowConnectorLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = ERROR) @Message(id = 5005, value = "Cannot remove uploaded file %s") void cannotRemoveUploadedFile(Path file);
Example #20
Source File: SmallRyeGraphQLServletLogging.java From smallrye-graphql with Apache License 2.0 | 4 votes |
@LogMessage(level = Logger.Level.DEBUG) @Message(id = 20002, value = "Processing file [%s]") void processingFile(String path);
Example #21
Source File: UndertowConnectorLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = ERROR) @Message(id = 5024, value = "Could not register resource change listener for caching resource manager, automatic invalidation of cached resource will not work") void couldNotRegisterChangeListener(@Cause Exception e);
Example #22
Source File: UndertowLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = DEBUG) @Message(id = 5040, value = "Gonna send payload:\n%s") void proxyAdvertiseMessagePayload(String payload);
Example #23
Source File: UndertowConnectorLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = DEBUG) @Message(id = 5006, value = "Connection from %s terminated as request header was larger than %s") void requestHeaderWasTooLarge(SocketAddress address, int size);
Example #24
Source File: UndertowConnectorLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = ERROR) @Message(id = 5031, value = "Proxy request to %s could not connect to backend server %s") void proxyFailedToConnectToBackend(String requestURI, URI uri);
Example #25
Source File: UndertowLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = ERROR) @Message(id = 5036, value = "ALPN negotiation failed for %s and no fallback defined, closing connection") void noALPNFallback(SocketAddress address);
Example #26
Source File: UndertowLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = DEBUG) @Message(id = 5035, value = "Closing channel because of parse timeout for remote address %s") void parseRequestTimedOut(java.net.SocketAddress remoteAddress);
Example #27
Source File: UndertowConnectorLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = INFO) @Message(id = 5044, value = "Removing node %s") void removingNode(String jvmRoute);
Example #28
Source File: UndertowLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = ERROR) @Message(id = 5032, value = "Listener not making progress on framed channel, closing channel to prevent infinite loop") void listenerNotProgressing();
Example #29
Source File: UndertowLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = ERROR) @Message(id = 5031, value = "Proxy request to %s could not connect to backend server %s") void proxyFailedToConnectToBackend(String requestURI, URI uri);
Example #30
Source File: UndertowLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = ERROR) @Message(id = 5028, value = "Proxy request to %s failed") void proxyRequestFailed(String requestURI, @Cause Exception e);