Interface TomcatLogger

    • Method Detail

      • allInjectionsAvailable

        @LogMessage(level=INFO)
        @Message(id=1100,
                 value="Tomcat 7+ detected, CDI injection will be available in Servlets, Filters and Listeners.")
        void allInjectionsAvailable()
      • listenersInjectionsNotAvailable

        @LogMessage(level=INFO)
        @Message(id=1101,
                 value="Tomcat 7+ detected, CDI injection will be available in Servlets and Filters. Injection into Listeners is not supported.")
        void listenersInjectionsNotAvailable()
      • unableToReplaceTomcat

        @LogMessage(level=ERROR)
        @Message(id=1102,
                 value="Unable to replace Tomcat 7 AnnotationProcessor. CDI injection will not be available in Servlets, Filters, or Listeners.")
        void unableToReplaceTomcat​(@Cause
                                   Throwable cause)
      • cannotCreatWeldForwardingAnnotationProcessor

        @Message(id=1103,
                 value="Cannot create WeldForwardingAnnotationProcessor.")
        RuntimeException cannotCreatWeldForwardingAnnotationProcessor​(@Cause
                                                                      Throwable cause)
      • cannotGetStandardContext

        @Message(id=1104,
                 value="Cannot get StandardContext from ServletContext.")
        RuntimeException cannotGetStandardContext​(@Cause
                                                  Throwable cause)
      • neitherFieldNorGetterSetterFound

        @Message(id=1105,
                 value="Neither field nor getter/setter found for instanceManager on {0}",
                 format=MESSAGE_FORMAT)
        RuntimeException neitherFieldNorGetterSetterFound​(Class<?> standardContextClass)
      • errorInvokingMethod

        @Message(id=1106,
                 value="Exception invoking method {0} on object {1}, using arguments {2}",
                 format=MESSAGE_FORMAT)
        RuntimeException errorInvokingMethod​(String method,
                                             Object obj,
                                             Object... args)
      • errorReadingField

        @Message(id=1107,
                 value="Exception reading field {0} on object {1}",
                 format=MESSAGE_FORMAT)
        RuntimeException errorReadingField​(String field,
                                           Object obj)
      • errorWritingField

        @Message(id=1108,
                 value="Exception writing field {0} on object {1}, new value: {2}",
                 format=MESSAGE_FORMAT)
        RuntimeException errorWritingField​(String field,
                                           Object obj,
                                           Object value)