Examples of warn()


Examples of org.slf4j.Logger.warn()

                        logger.debug("Excluding job {} with name {} and config {}.",
                                new Object[] {job, data.get(QuartzScheduler.DATA_MAP_NAME), runOn[0]});
                        return;
                    }
                } else {
                    logger.warn("No discovery info available. Executing job {} with name {} and config {} anyway.",
                            new Object[] {job, data.get(QuartzScheduler.DATA_MAP_NAME), runOn[0]});
                }
            } else { // sling IDs
                final String myId = SLING_ID;
                boolean schedule = false;
View Full Code Here

Examples of org.slf4j.Logger.warn()

                }
            } else { // sling IDs
                final String myId = SLING_ID;
                boolean schedule = false;
                if ( myId == null ) {
                    logger.warn("No Sling ID available. Executing job {} with name {} and config {} anyway.",
                            new Object[] {job, data.get(QuartzScheduler.DATA_MAP_NAME), Arrays.toString(runOn)});
                    schedule = true;
                } else {
                    for(final String id : runOn ) {
                        if ( myId.equals(id) ) {
View Full Code Here

Examples of org.slf4j.Logger.warn()

                break;
            case LogService.LOG_INFO:
                log.info(message, exception);
                break;
            case LogService.LOG_WARNING:
                log.warn(message, exception);
                break;
            case LogService.LOG_ERROR:
                log.error(message, exception);
                break;
            default:
View Full Code Here

Examples of org.slf4j.Logger.warn()

                    RequiredProvider rp = new RequiredProvider();
                    if ( value.startsWith("(") ) {
                        try {
                            rp.filter = bc.createFilter(value);
                        } catch (final InvalidSyntaxException e) {
                            logger.warn("Ignoring invalid filter syntax for required provider: " + value, e);
                            rp = null;
                        }
                    } else {
                        rp.pid = value;
                    }
View Full Code Here

Examples of org.voltcore.logging.VoltLogger.warn()

        // warn if running with a simulated clock skew
        // this should only be used for testing
        if (m_timestampTestingSalt != 0) {
            VoltLogger log = new VoltLogger("HOST");
            log.warn(String.format("Initiator (id=%d) running in test mode with non-zero timestamp testing value: %d",
                     initiatorId, timestampTestingSalt));
        }


        // if the cluster has one node, allow clocks to be changed up to one week
View Full Code Here

Examples of railo.commons.io.log.Log.warn()

                    terminate(pc);
                }
                // after 10 seconds downgrade priority of the thread
                else if(pc.getStartTime()+10000<System.currentTimeMillis() && pc.getThread().getPriority()!=Thread.MIN_PRIORITY) {
                    Log log = config.getRequestTimeoutLogger();
                    if(log!=null)log.warn("controller","downgrade priority of the a thread at "+getPath(pc));
                    try {
                      pc.getThread().setPriority(Thread.MIN_PRIORITY);
                    }
                    catch(Throwable t) {}
                }
View Full Code Here

Examples of rocket.generator.rebind.GeneratorContext.warn()

        throwPrototypeCantBeContainerDestroyed(bean);
      }

      final Type disposableBean = this.getDisposableBean();
      if (beanType.isAssignableTo(disposableBean)) {
        context.warn("Ignoring the fact the bean implements DisposableBean (because its a prototype)"
            + (context.isDebugEnabled() ? "." : ", bean: " + bean));
      }
    }

    // start creating the factory bean...
View Full Code Here

Examples of rocket.logging.client.Logger.warn()

  protected void warn(final String loggerName, final String message, final Throwable throwable) {
    final Logger logger = this.getLogger(loggerName);

    if (null == throwable) {
      logger.warn(message);
    } else {
      logger.warn(message, throwable);
    }
  }
View Full Code Here

Examples of sos.util.SOSLogger.warn()

           
            //2a.
            FTPProfile profile1 = ftpProfilePicker.getSelectedFTPProfile();

            if(profile1 == null) {
              logger.warn("Please define first a Profile");
              return;
            }

            //Verbindung zum FTP Server aufbauen
            sosfileTransfer = profile1.connect();
View Full Code Here

Examples of sos.util.SOSStandardLogger.warn()

           
            //2a.
            FTPProfile profile1 = ftpProfilePicker.getSelectedFTPProfile();

            if(profile1 == null) {
              logger.warn("Please define first a Profile");
              return;
            }

            //Verbindung zum FTP Server aufbauen
            sosfileTransfer = profile1.connect();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.