Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for setThreshold (0.07 sec)

  1. compat/maven-embedder/src/main/java/org/apache/maven/cli/logging/Slf4jLoggerManager.java

        /**
         * <b>Warning</b>: ignored (always return <code>0</code>).
         */
        public int getThreshold() {
            return 0;
        }
    
        /**
         * <b>Warning</b>: ignored.
         */
        public void setThreshold(int threshold) {}
    
        /**
         * <b>Warning</b>: ignored.
         */
        public void setThresholds(int threshold) {}
    
        /**
         * <b>Warning</b>: ignored (always return <code>0</code>).
         */
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. compat/maven-embedder/src/main/java/org/apache/maven/cli/logging/Slf4jLogger.java

        }
    
        /**
         * <b>Warning</b>: ignored (always return <code>0 == Logger.LEVEL_DEBUG</code>).
         */
        public int getThreshold() {
            return 0;
        }
    
        /**
         * <b>Warning</b>: ignored.
         */
        public void setThreshold(int threshold) {}
    
        /**
         * <b>Warning</b>: ignored (always return <code>null</code>).
         */
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/PlexusContainerCapsuleFactory.java

                        new ExtensionConfigurationModule(extension, extensionSource));
            }
    
            container.getLoggerManager().setThresholds(toPlexusLoggingLevel(context.loggerLevel));
            customizeContainer(context, container);
    
            // refresh logger in case container got customized by spy
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                        new ExtensionConfigurationModule(extension, extensionSource));
            }
    
            customizeContainer(container);
    
            container.getLoggerManager().setThresholds(cliRequest.request.getLoggingLevel());
    
            eventSpyDispatcher = container.lookup(EventSpyDispatcher.class);
    
            DefaultEventSpyContext eventSpyContext = new DefaultEventSpyContext();
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 76.8K bytes
    - Viewed (0)
Back to top