Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 489 for Warn (0.3 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java

                    : EnumSet.of(IssueLocality.EXTERNAL);
    
            if (hasAnythingToReport(issuesMap, issueLocalitiesToReport)) {
                logger.warn("");
                logger.warn("Plugin {} validation issues were detected in following plugin(s)", issueLocalitiesToReport);
                logger.warn("");
                for (Map.Entry<String, PluginValidationIssues> entry : issuesMap.entrySet()) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Nov 19 21:11:13 GMT 2023
    - 17.4K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/collector/DefaultProjectsSelector.java

                        LOGGER.warn("{}{}", problem.getMessage(), ((loc != null && !loc.isEmpty()) ? " @ " + loc : ""));
                    }
    
                    problems = true;
                }
            }
    
            if (problems) {
                LOGGER.warn("");
                LOGGER.warn("It is highly recommended to fix these problems"
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue May 09 23:46:02 GMT 2023
    - 3.7K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/aether/LoggingRepositoryListener.java

            if (logger.isDebugEnabled()) {
                logger.warn(msg, event.getArtifact(), event.getException().getMessage());
            } else {
                logger.warn(msg, event.getArtifact(), "enable verbose output (-X) for more details");
            }
        }
    
        @Override
        public void artifactDescriptorMissing(RepositoryEvent event) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 3.7K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLog.java

        @Override
        public void warn(CharSequence content) {
            if (isWarnEnabled()) {
                logger.warn(toString(content));
            }
        }
    
        @Override
        public void warn(CharSequence content, Throwable error) {
            if (isWarnEnabled()) {
                logger.warn(toString(content), error);
            }
        }
    
        @Override
        public void warn(Throwable error) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 4.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/util/UpgradeUtil.java

                        logger.info("Register {} to {}", path, indexName);
                        return true;
                    }
                    logger.warn("Invalid request for {}", path);
                }
            } catch (final Exception e) {
                logger.warn("Failed to register {}", filePath, e);
            }
            return false;
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.1K bytes
    - Viewed (0)
  6. logger/logger.go

    	if l.LogLevel >= Info {
    		l.Printf(l.infoStr+msg, append([]interface{}{utils.FileWithLineNum()}, data...)...)
    	}
    }
    
    // Warn print warn messages
    func (l *logger) Warn(ctx context.Context, msg string, data ...interface{}) {
    	if l.LogLevel >= Warn {
    		l.Printf(l.warnStr+msg, append([]interface{}{utils.FileWithLineNum()}, data...)...)
    	}
    }
    
    // Error print error messages
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Tue Nov 07 02:19:41 GMT 2023
    - 5.8K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java

                            logger.warn("  " + unsafeGoal.getId());
                        }
                    } else {
                        logger.warn("The following plugins are not marked as thread-safe in " + project.getName() + ":");
                        for (Plugin unsafePlugin : unsafePlugins) {
                            logger.warn("  " + unsafePlugin.getId());
                        }
                        logger.warn("");
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 10.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/log/Logger.java

            }
        }
    
        /**
         * WARN情報を出力します。
         *
         * @param message
         *            メッセージ
         * @param throwable
         *            例外
         */
        public void warn(final Object message, final Throwable throwable) {
            log.warn(toString(message), throwable);
        }
    
        /**
         * WARN情報を出力します。
         *
         * @param message
         *            メッセージ
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 13.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/log/JclLoggerAdapter.java

        @Override
        public boolean isWarnEnabled() {
            return logger.isWarnEnabled();
        }
    
        @Override
        public void warn(final String message) {
            logger.warn(message);
        }
    
        @Override
        public void warn(final String message, final Throwable t) {
            logger.warn(message, t);
        }
    
        @Override
        public boolean isInfoEnabled() {
            return logger.isInfoEnabled();
        }
    
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

                if (!p.waitFor(commandTimeout + commandDestroyTimeout, TimeUnit.MILLISECONDS)) {
                    logger.warn("Destroying {} because of the process timeout.", getName());
                    p.destroy();
                }
    
                final int exitValue = p.exitValue();
                if (exitValue != 0) {
                    logger.warn("{} is failed (exit code:{}, timeout:{}): {}", getName(), exitValue, task.isExecuted(), commandList);
                }
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.6K bytes
    - Viewed (0)
Back to top