Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for loggerLevel (0.09 sec)

  1. 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
            org.slf4j.Logger l = context.loggerFactory.getLogger(this.getClass().getName());
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java

            context.loggerLevel = Slf4jConfiguration.Level.INFO;
            if (mavenOptions.verbose().orElse(false)) {
                context.loggerLevel = Slf4jConfiguration.Level.DEBUG;
            } else if (mavenOptions.quiet().orElse(false)) {
                context.loggerLevel = Slf4jConfiguration.Level.ERROR;
            }
            context.slf4jConfiguration.setRootLoggerLevel(context.loggerLevel);
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 38K bytes
    - Viewed (0)
  3. istioctl/pkg/ztunnelconfig/ztunnelconfig.go

    						loggerLevel := regexp.MustCompile(`[:=]`).Split(loggerAndLevelOnly, 2)
    						// TODO validate ztunnel logger name when available: https://github.com/istio/ztunnel/issues/426
    						level, ok := stringToLevel[loggerLevel[1]]
    						if !ok {
    							return fmt.Errorf("unrecognized logging level: %v", loggerLevel[1])
    						}
    						destLoggerLevels[loggerLevel[0]] = level
    					}
    				}
    			}
    
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Oct 09 19:17:45 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

                throw new UnsupportedOperationException();
            }
    
            @Override
            public String getInitParameter(final String name) {
                if (SpnegoHttpFilter.Constants.LOGGER_LEVEL.equals(name)) {
                    final String logLevel = getProperty(SPNEGO_LOGGER_LEVEL, StringUtil.EMPTY);
                    if (StringUtil.isNotBlank(logLevel)) {
                        return logLevel;
                    }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:46 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top