Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for updateLogging (0.04 sec)

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/PlexusContainerCapsule.java

            this.plexusContainer = requireNonNull(plexusContainer, "plexusContainer");
            this.lookup = new DefaultLookup(plexusContainer);
            updateLogging(context);
        }
    
        @Override
        public void updateLogging(LookupContext context) {
            plexusContainer.getLoggerManager().setThresholds(toPlexusLoggingLevel(context.loggerLevel));
        }
    
        @Override
        public Lookup getLookup() {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Mar 24 14:09:05 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/ContainerCapsule.java

    import org.apache.maven.api.services.Lookup;
    
    /**
     * Container capsule.
     */
    public interface ContainerCapsule extends AutoCloseable {
        /**
         * Updates the existing capsule logging setup.
         */
        void updateLogging(LookupContext context);
    
        /**
         * The {@link Lookup} service backed by container in this capsule.
         */
        @Nonnull
        Lookup getLookup();
    
        /**
         * The TCCL, if implementation requires it.
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 31 20:56:58 UTC 2025
    - 1.5K bytes
    - Viewed (0)
Back to top