Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for isErrorEnabled (0.23 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLog.java

            }
        }
    
        @Override
        public void error(CharSequence content) {
            if (isErrorEnabled()) {
                logger.error(toString(content));
            }
        }
    
        @Override
        public void error(CharSequence content, Throwable error) {
            if (isErrorEnabled()) {
                logger.error(toString(content), error);
            }
        }
    
        @Override
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. compat/maven-embedder/src/main/java/org/apache/maven/cli/logging/Slf4jStdoutLogger.java

        public boolean isErrorEnabled() {
            return false;
        }
    
        public void error(String format, Object arg) {}
    
        public void error(String format, Object arg1, Object arg2) {}
    
        public void error(String format, Object... arguments) {}
    
        public boolean isErrorEnabled(Marker marker) {
            return false;
        }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. compat/maven-embedder/src/main/java/org/apache/maven/cli/logging/Slf4jLogger.java

            logger.error(message);
        }
    
        public void error(String message, Throwable throwable) {
            setMdc();
            logger.error(message, throwable);
        }
    
        public boolean isErrorEnabled() {
            return logger.isErrorEnabled();
        }
    
        public void fatalError(String message) {
            setMdc();
            logger.error(message);
        }
    
        public void fatalError(String message, Throwable throwable) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/logging/SystemStreamLog.java

         */
        public boolean isWarnEnabled() {
            return true;
        }
    
        /**
         * @see org.apache.maven.plugin.logging.Log#isErrorEnabled()
         */
        public boolean isErrorEnabled() {
            return true;
        }
    
        private void print(String prefix, CharSequence content) {
            System.out.println("[" + prefix + "] " + content.toString());
        }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/logging/Log.java

         *
         * @param error
         */
        void warn(Throwable error);
    
        /**
         * @return true if the <b>error</b> error level is enabled
         */
        boolean isErrorEnabled();
    
        /**
         * Send a message to the user in the <b>error</b> error level.
         *
         * @param content
         */
        void error(CharSequence content);
    
        /**
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/CrawlerLogHelper.java

            } else if (cae.isWarnEnabled()) {
                logger.warn("[{}] Crawling Access Exception at {}", failureUrlId, urlQueue.getUrl(), cae);
            } else if (cae.isErrorEnabled()) {
                logger.error("[{}] Crawling Access Exception at {}", failureUrlId, urlQueue.getUrl(), cae);
            }
    
            ComponentUtil.getCrawlerStatsHelper().record(urlQueue, StatsAction.ACCESS_EXCEPTION);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/Log.java

        void warn(Supplier<String> content);
    
        void warn(Supplier<String> content, Throwable error);
    
        /**
         * {@return true if the <b>error</b> error level is enabled}
         */
        boolean isErrorEnabled();
    
        /**
         * Sends a message to the user in the <b>error</b> error level.
         *
         * @param content the message to log
         */
        void error(CharSequence content);
    
        /**
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Sat Sep 28 09:03:24 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

                        return "5";
                    }
                    if (logger.isWarnEnabled()) {
                        return "6";
                    }
                    if (logger.isErrorEnabled()) {
                        return "7";
                    }
                    return "0";
                }
                if (SpnegoHttpFilter.Constants.LOGIN_CONF.equals(name)) {
    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