org.jboss.logging.annotations.Cause Java Examples
The following examples show how to use
org.jboss.logging.annotations.Cause.
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: UndertowConnectorLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = ERROR) @Message(id = 5016, value = "Error writing access log") void errorWritingAccessLog(@Cause IOException e);
Example #2
Source File: UndertowConnectorMessages.java From quarkus-http with Apache License 2.0 | 4 votes |
@Message(id = 23, value = "An invalid Base64 token has been received.") IllegalArgumentException invalidBase64Token(@Cause final IOException cause);
Example #3
Source File: UndertowConnectorLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = ERROR) @Message(id = 5086, value = "Failed to accept SSL request") void failedToAcceptSSLRequest(@Cause Exception e);
Example #4
Source File: UndertowConnectorMessages.java From quarkus-http with Apache License 2.0 | 4 votes |
@Message(id = 145, value = "Too many redirects") IOException tooManyRedirects(@Cause IOException exception);
Example #5
Source File: SmallRyeGraphQLServletLogging.java From smallrye-graphql with Apache License 2.0 | 4 votes |
@LogMessage(level = Logger.Level.DEBUG) @Message(id = 20003, value = "Cannot process file [%s]") void cannotProcessFile(String path, @Cause Exception cause);
Example #6
Source File: UndertowConnectorMessages.java From quarkus-http with Apache License 2.0 | 4 votes |
@Message(id = 72, value = "Failed to decode url %s to charset %s") IllegalArgumentException failedToDecodeURL(String s, String enc, @Cause Exception e);
Example #7
Source File: UndertowConnectorLogger.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 #8
Source File: UndertowConnectorLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = ERROR) @Message(id = 5090, value = "Unexpected failure") void handleUnexpectedFailure(@Cause Throwable t);
Example #9
Source File: UndertowConnectorLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = ERROR) @Message(id = 5088, value = "Failed to execute ServletOutputStream.closeAsync() on IO thread") void closeAsyncFailed(@Cause IOException e);
Example #10
Source File: SmallRyeGraphQLServerMessages.java From smallrye-graphql with Apache License 2.0 | 4 votes |
@Message(id = 9, value = "Can not load class [%s]") RuntimeException canNotLoadClass(String className, @Cause Exception cause);
Example #11
Source File: SmallRyeGraphQLServerMessages.java From smallrye-graphql with Apache License 2.0 | 4 votes |
@Message(id = 12, value = "Expected type [%s] but was [%s].") CoercingSerializeException coercingSerializeException(String expectedType, String actualType, @Cause Exception cause);
Example #12
Source File: UndertowConnectorLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = ERROR) @Message(id = 5023, value = "Exception handling request to %s") void exceptionHandlingRequest(@Cause Throwable t, String requestURI);
Example #13
Source File: UndertowConnectorLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = ERROR) @Message(id = 5022, value = "Exception generating error page %s") void exceptionGeneratingErrorPage(@Cause Exception e, String location);
Example #14
Source File: UndertowConnectorLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = ERROR) @Message(id = 5020, value = "Error writing JDBC log") void errorWritingJDBCLog(@Cause Exception e);
Example #15
Source File: UndertowConnectorLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = ERROR) @Message(id = 5018, value = "Exception invoking close listener %s") void exceptionInvokingCloseListener(Object l, @Cause Throwable e);
Example #16
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 #17
Source File: UndertowConnectorLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = ERROR) @Message(id = 5015, value = "Error rotating access log") void errorRotatingAccessLog(@Cause IOException e);
Example #18
Source File: UndertowConnectorLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = DEBUG) @Message(id = 5014, value = "Failed to parse request") void failedToParseRequest(@Cause Throwable e);
Example #19
Source File: UndertowConnectorLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = DEBUG) @Message(id = 5013, value = "An IOException occurred") void ioException(@Cause IOException e);
Example #20
Source File: SmallRyeGraphQLServerLogging.java From smallrye-graphql with Apache License 2.0 | 4 votes |
@LogMessage(level = Logger.Level.ERROR) @Message(id = 12000, value = "Data Fetching Error") void dataFetchingError(@Cause Throwable cause);
Example #21
Source File: UndertowConnectorLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = ERROR) @Message(id = 5001, value = "An exception occurred processing the request") void exceptionProcessingRequest(@Cause Throwable cause);
Example #22
Source File: UndertowMessages.java From quarkus-http with Apache License 2.0 | 4 votes |
@Message(id = 145, value = "Too many redirects") IOException tooManyRedirects(@Cause IOException exception);
Example #23
Source File: UndertowMessages.java From quarkus-http with Apache License 2.0 | 4 votes |
@Message(id = 72, value = "Failed to decode url %s to charset %s") IllegalArgumentException failedToDecodeURL(String s, String enc, @Cause Exception e);
Example #24
Source File: UndertowMessages.java From quarkus-http with Apache License 2.0 | 4 votes |
@Message(id = 23, value = "An invalid Base64 token has been received.") IllegalArgumentException invalidBase64Token(@Cause final IOException cause);
Example #25
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 #26
Source File: UndertowLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = DEBUG) @Message(id = 5092, value = "Failed to free direct buffer") void directBufferDeallocationFailed(@Cause Throwable t);
Example #27
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 #28
Source File: UndertowLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = ERROR) @Message(id = 5090, value = "Unexpected failure") void handleUnexpectedFailure(@Cause Throwable t);
Example #29
Source File: UndertowLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = ERROR) @Message(id = 5088, value = "Failed to execute ServletOutputStream.closeAsync() on IO thread") void closeAsyncFailed(@Cause IOException e);
Example #30
Source File: UndertowLogger.java From quarkus-http with Apache License 2.0 | 4 votes |
@LogMessage(level = ERROR) @Message(id = 5087, value = "Failed to use the server order") void failedToUseServerOrder(@Cause ReflectiveOperationException e);