Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setLogLevel (0.07 sec)

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

                MavenSimpleLogger stderr = (MavenSimpleLogger) context.loggerFactory.getLogger("stderr");
                stdout.setLogLevel(LocationAwareLogger.INFO_INT);
                stderr.setLogLevel(LocationAwareLogger.INFO_INT);
                System.setOut(new LoggingOutputStream(s -> stdout.info("[stdout] " + s)).printStream());
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 38K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

                });
            } catch (final Exception e) {
                final CrawlingAccessException rcae = new CrawlingAccessException("Could not get a text from " + responseData.getUrl(), e);
                rcae.setLogLevel(CrawlingAccessException.WARN);
                throw rcae;
            }
            if (content == null) {
                content = StringUtil.EMPTY;
            }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            return response;
        }
    
        public HtmlResponse getRedirectResponseToRoot(final HtmlResponse response) {
            return response;
        }
    
        public void setLogLevel(final String level) {
            final Level logLevel = Level.toLevel(level, Level.WARN);
            System.setProperty(Constants.FESS_LOG_LEVEL, logLevel.toString());
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 17 12:10:08 UTC 2024
    - 27.2K bytes
    - Viewed (0)
Back to top