Examples of info()


Examples of org.elasticsearch.common.logging.ESLogger.info()

            System.exit(3);
        }

        if (System.getProperty("es.max-open-files", "false").equals("true")) {
            ESLogger logger = Loggers.getLogger(Bootstrap.class);
            logger.info("max_open_files [{}]", FileSystemUtils.maxOpenFiles(new File(tuple.v2().workFile(), "open_files")));
        }

        // warn if running using the client VM
        if (JvmInfo.jvmInfo().vmName().toLowerCase().contains("client")) {
            ESLogger logger = Loggers.getLogger(Bootstrap.class);
View Full Code Here

Examples of org.elasticsearch.node.service.NodeService.info()

    @Test
    public void testNoHttpServerAvailable() throws Exception {
        NodeService nodeService = mock(NodeService.class);
        NodeInfo nodeInfo = mock(NodeInfo.class);
        when(nodeService.info()).thenReturn(nodeInfo);
        when(nodeInfo.getHttp()).thenReturn(null);


        NodePortExpression nodePortExpression = new NodePortExpression(nodeService);
        Object value = nodePortExpression.getChildImplementation(NodePortExpression.HTTP).value();
View Full Code Here

Examples of org.exoplatform.services.log.Log.info()

      props.put("java.util.logging.FileHandler.formatter", "java.util.logging.SimpleFormatter");

      LogConfigurationInitializer initializer = new LogConfigurationInitializer(logger, confClass, props);
      Log log = ExoLogger.getLogger(TestLoggers.class);

      log.info("JCL Tests");
      logOut(log);

   }

   /**
 
View Full Code Here

Examples of org.fao.geonet.Logger.info()

                //--- update lastRun
                settingMan.setValue("harvesting/id:" + id + "/info/lastRun", lastRun);

                //--- proper harvesting
                logger.info("Started harvesting from node : " + nodeName);
                HarvestWithIndexProcessor h = new HarvestWithIndexProcessor(dataMan, logger);
                // todo check (was: processwithfastindexing)
                h.process();
                logger.info("Ended harvesting from node : " + nodeName);
View Full Code Here

Examples of org.flywaydb.core.Flyway.info()

                System.out.println("Database Schema: " + getSchemaName(connection));
                System.out.println("Database Software: " + meta.getDatabaseProductName() + " version " + meta.getDatabaseProductVersion());
                System.out.println("Database Driver: " + meta.getDriverName() + " version " + meta.getDriverVersion());

                // Get info table from Flyway
                System.out.println("\n" + MigrationInfoDumper.dumpToAsciiTable(flyway.info().all()));

                // If Flyway is NOT yet initialized, also print the determined version information
                // NOTE: search is case sensitive, as flyway table name is ALWAYS lowercase,
                // See: http://flywaydb.org/documentation/faq.html#case-sensitive
                if(!tableExists(connection, flyway.getTable(), true))
View Full Code Here

Examples of org.gradle.api.logging.Logger.info()

    //if (context != null && !context.hasDelta(sourceDirectory)) return;

    Logger log = getLogger();
   
//    log.info("");
    log.info("CONFIGURATION");
    log.info(WeaverLog.LINE.replaceAll("\n", ""));
    log.info(WeaverLog.format("ideFriendlyPacking", ideFriendlyPacking));
    log.info(WeaverLog.format("enablePooledWeaving", enablePooledWeaving));
    log.info(WeaverLog.format("optimizeEntitySystems", optimizeEntitySystems));
    log.info(WeaverLog.format("outputDirectory",  classesDir));
View Full Code Here

Examples of org.gwtoolbox.commons.generator.rebind.EasyTreeLogger.info()

    protected void logComponentDefinition(EasyTreeLogger logger, ComponentDefinition definition) {
        EasyTreeLogger rootLogger = logger.getRoot();

        if (level == LoggingLevel.BASIC) {
            rootLogger.info("Component '" + definition.getId() + "'");
            return;
        }

        EasyTreeLogger newLogger = rootLogger.branchInfo("Component '" + definition.getId() + "'");
        newLogger.info("Type: " + definition.getComponentType().getQualifiedSourceName());
View Full Code Here

Examples of org.hornetq.core.logging.Logger.info()

   /** Sends the message to both logger and System.out (for unit report) */
   public void logAndSystemOut(String message, Exception e)
   {
      Logger log = Logger.getLogger(this.getClass());
      log.info(message, e);
      System.out.println(message);
      e.printStackTrace(System.out);
   }

   /** Sends the message to both logger and System.out (for unit report) */
 
View Full Code Here

Examples of org.jblas.util.Logger.info()

        boolean skipJava = false;
        boolean unrecognizedOptions = false;

        Logger log = Logger.getLogger();

        log.info("jblas version is " + org.jblas.Info.VERSION);

        for (String arg : args) {
            if (arg.startsWith("--")) {
                int i = arg.indexOf('=');
                String value = null;
View Full Code Here

Examples of org.jboss.forge.addon.ui.output.UIOutput.info()

                  {
                     output.warn(err, record.getMessage());
                  }
                  else
                  {
                     output.info(err, record.getMessage());
                  }
               }
            }
         }
      }
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.