Examples of warn()


Examples of bm.core.log.Log.warn()

                         Integer.toString( recordId )
                );
            }
            if( !fetchDeleted && data[Row.STATUS_BYTE] == Row.STATUS_DELETED )
            {
                log.warn( "Deleted row: " + recordId );
                ErrorLog.addError(
                        "Table",
                        "getRowFromStore",
                        new Object[] { new Integer( recordId ) },
                        tableInfo.getName() + ": status deleted",
View Full Code Here

Examples of ch.qos.logback.classic.Logger.warn()

    appender.start();
   
    rootLogger.addAppender(appender);

    rootLogger.debug("Message 1");
    rootLogger.warn("Message 2");
  }
}
View Full Code Here

Examples of com.alibaba.druid.support.logging.JakartaCommonsLoggingImpl.warn()

        impl.isInfoEnabled();
        impl.isWarnEnabled();
        impl.debug("");
        impl.debug("", new Exception());
        impl.info("");
        impl.warn("");
        impl.warn("", new Exception());
        impl.error("");
        impl.error("", new Exception());
        Assert.assertEquals(1, impl.getInfoCount());
        Assert.assertEquals(2, impl.getErrorCount());
View Full Code Here

Examples of com.alibaba.druid.support.logging.Jdk14LoggingImpl.warn()

        impl.isInfoEnabled();
        impl.isWarnEnabled();
        impl.debug("");
        impl.debug("", new Exception());
        impl.info("");
        impl.warn("");
        impl.warn("", new Exception());
        impl.error("");
        impl.error("", new Exception());
        Assert.assertEquals(1, impl.getInfoCount());
        Assert.assertEquals(2, impl.getErrorCount());
View Full Code Here

Examples of com.alibaba.druid.support.logging.Log4jImpl.warn()

        impl.isInfoEnabled();
        impl.isWarnEnabled();
        impl.debug("");
        impl.debug("", new Exception());
        impl.info("");
        impl.warn("");
        impl.warn("", new Exception());
        impl.error("");
        impl.error("", new Exception());
        Assert.assertEquals(1, impl.getInfoCount());
        Assert.assertEquals(2, impl.getErrorCount());
View Full Code Here

Examples of com.alibaba.druid.support.logging.NoLoggingImpl.warn()

        impl.isInfoEnabled();
        impl.isWarnEnabled();
        impl.debug("");
        impl.debug("", new Exception());
        impl.info("");
        impl.warn("");
        impl.warn("", new Exception());
        impl.error("");
        impl.error("", new Exception());
        Assert.assertEquals(1, impl.getInfoCount());
        Assert.assertEquals(2, impl.getErrorCount());
View Full Code Here

Examples of com.alibaba.druid.support.logging.SLF4JImpl.warn()

        impl.isInfoEnabled();
        impl.isWarnEnabled();
        impl.debug("");
        impl.debug("", new Exception());
        impl.info("");
        impl.warn("");
        impl.warn("", new Exception());
        impl.error("");
        impl.error("", new Exception());
        Assert.assertEquals(1, impl.getInfoCount());
        Assert.assertEquals(2, impl.getErrorCount());
View Full Code Here

Examples of com.allen_sauer.gwt.log.client.Logger.warn()

    if (isWarnEnabled()) {
      message = format(toPrefix(LOG_LEVEL_TEXT_WARN), message);
      for (Iterator iterator = loggers.iterator(); iterator.hasNext();) {
        Logger logger = (Logger) iterator.next();
        try {
          logger.warn(message, e);
        } catch (RuntimeException e1) {
          iterator.remove();
          diagnostic("Removing '" + GWT.getTypeName(logger) + "' due to unexecpted exception", e1);
        }
      }
View Full Code Here

Examples of com.arjuna.common.util.logging.Logi18n.warn()

    // Don't init the log in a member variable - it must be done AFTER System.out is changed.
    // TODO: this needs to be cleaner, or we need each test in it's own JVM!
    Logi18n log = LogFactory.getLogi18n(CLASS, "TestLevels");
    log.debug("testMessage", new Object[] {"1st", "debug"});
    log.info("testMessage", new Object[] {"1st", "info"});
    log.warn("testMessage", new Object[] {"1st", "warn"});
    log.error("testMessage", new Object[] {"1st", "error"});
    log.fatal("testMessage", new Object[] {"1st", "fatal"});
  }

  public static void verifyResult(String result, boolean expectReleveling) {
View Full Code Here

Examples of com.dtolabs.rundeck.core.execution.BaseLogger.warn()

                case Logger.FATAL:
                case Logger.ERROR:
                    baseLogger1.error(message);
                    break;
                case Logger.WARN:
                    baseLogger1.warn(message);
                    break;
                case Logger.DEBUG:
                    baseLogger1.debug(message);
                    break;
                case Logger.INFO:
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.