Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for effectiveVerbose (0.17 sec)

  1. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/LookupInvokerLoggingTest.java

            // Simulate the fixed logic from LookupInvoker.prepareLogging()
            Slf4jConfiguration.Level loggerLevel;
            if (invokerRequest.effectiveVerbose()) {
                loggerLevel = Slf4jConfiguration.Level.DEBUG;
                slf4jConfiguration.setRootLoggerLevel(loggerLevel);
            } else if (options.quiet().orElse(false)) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Oct 08 21:10:33 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  2. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/InvokerRequest.java

        Optional<Options> options();
    
        /**
         * This method returns "verbose" option value derived from multiple places: CLI options, but also CI detection,
         * if applicable.
         */
        default boolean effectiveVerbose() {
            return options().isPresent() && options().orElseThrow().verbose().orElse(false)
                    || ciInfo().isPresent() && ciInfo().orElseThrow().isVerbose();
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jun 11 13:14:09 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java

            context.loggerFactory = LoggerFactory.getILoggerFactory();
            context.slf4jConfiguration = Slf4jConfigurationFactory.getConfiguration(context.loggerFactory);
    
            if (context.invokerRequest.effectiveVerbose()) {
                context.loggerLevel = Slf4jConfiguration.Level.DEBUG;
                context.slf4jConfiguration.setRootLoggerLevel(context.loggerLevel);
            } else if (context.options().quiet().orElse(false)) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Oct 28 13:01:07 UTC 2025
    - 43.2K bytes
    - Viewed (0)
  4. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java

                            context.invokerRequest.messageBuilderFactory(),
                            context.terminal.writer(),
                            context.invokerRequest.effectiveVerbose()));
                    context.closeables.add(simplex);
                    context.simplexTransferListener = simplex;
                }
                delegate = context.simplexTransferListener;
            } else {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Sep 11 17:20:46 UTC 2025
    - 28.2K bytes
    - Viewed (0)
Back to top