Interface WeldSELogger

  • All Superinterfaces:
    org.jboss.logging.BasicLogger, WeldEnvironmentLogger
    All Known Implementing Classes:
    WeldSELogger_$logger

    @MessageLogger(projectCode="WELD-ENV-")
    public interface WeldSELogger
    extends WeldEnvironmentLogger
    A source of localized log/bundle messages and exceptions. Note that this interface extends WeldEnvironmentLogger so that regular logger methods are available. Message IDs: 002000 - 002099
    Author:
    Matej Briškár, Martin Kouba, Kirill Gaevskii
    • Method Detail

      • weldContainerAlreadyRunning

        @Message(id=2000,
                 value="Weld SE container {0} is already running!",
                 format=MESSAGE_FORMAT)
        IllegalStateException weldContainerAlreadyRunning​(Object id)
      • weldContainerShutdown

        @LogMessage(level=INFO)
        @Message(id=2001,
                 value="Weld SE container {0} shut down",
                 format=MESSAGE_FORMAT)
        void weldContainerShutdown​(Object id)
      • weldContainerAlreadyShutDown

        @Message(id=2002,
                 value="Weld SE container {0} was already shut down",
                 format=MESSAGE_FORMAT)
        IllegalStateException weldContainerAlreadyShutDown​(Object id)
      • weldContainerInitialized

        @LogMessage(level=INFO)
        @Message(id=2003,
                 value="Weld SE container {0} initialized",
                 format=MESSAGE_FORMAT)
        void weldContainerInitialized​(Object id)
      • scanningPackage

        @LogMessage(level=DEBUG)
        @Message(id=2004,
                 value="Scanning package {0}, class resource: {1}",
                 format=MESSAGE_FORMAT)
        void scanningPackage​(Object packageName,
                             Object resource)
      • packageNotFound

        @LogMessage(level=WARN)
        @Message(id=2005,
                 value="Package intended for scanning was not found: {0}",
                 format=MESSAGE_FORMAT)
        void packageNotFound​(Object packageName)
      • multipleContainersRunning

        @LogMessage(level=INFO)
        @Message(id=2006,
                 value="Multiple containers running - CDI.current() may not work properly: {0}",
                 format=MESSAGE_FORMAT)
        void multipleContainersRunning​(Object ids)
      • resourceUrlProtocolNotSupported

        @LogMessage(level=DEBUG)
        @Message(id=2007,
                 value="Resource URL procotol not supported: {0}",
                 format=MESSAGE_FORMAT)
        void resourceUrlProtocolNotSupported​(Object resource)
      • beanClassDeployedInMultipleBeanArchives

        @LogMessage(level=WARN)
        @Message(id=2008,
                 value="Bean class {0} found in multiple bean archives - this may result in incorrect behavior: {1}",
                 format=MESSAGE_FORMAT)
        void beanClassDeployedInMultipleBeanArchives​(Object beanClass,
                                                     Object bdas)
      • weldContainerCannotBeInitializedNoBeanArchivesFound

        @Message(id=2009,
                 value="Weld SE container cannot be initialized - no bean archives found")
        IllegalStateException weldContainerCannotBeInitializedNoBeanArchivesFound()
      • deprecatedActivatorAnnotationUsed

        @LogMessage(level=WARN)
        @Message(id=2013,
                 value="Deprecated @{0} detected on {2} - replace it with @{1}",
                 format=MESSAGE_FORMAT)
        void deprecatedActivatorAnnotationUsed​(Object deprecateAnnotation,
                                               Object newAnnotation,
                                               Object type)