Package org.fao.geonet

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


                //--- 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);

                if (getParams().oneRunOnly) {
                    stop();
                }
            } catch (InvalidParameterValueEx e) {
View Full Code Here

    LuceneConfig lc = context.getBean(LuceneConfig.class);
        lc.configure(luceneConfigXmlFile);

    Logger logger = context.getLogger();
    logger.info("  - Lucene configuration is:");
    String config = lc.toString();
    logger.info(config);

    return new Element("response")
      .addContent(new Element("status").setText(status))
View Full Code Here

        lc.configure(luceneConfigXmlFile);

    Logger logger = context.getLogger();
    logger.info("  - Lucene configuration is:");
    String config = lc.toString();
    logger.info(config);

    return new Element("response")
      .addContent(new Element("status").setText(status))
      .addContent(new Element("config").setText(config));
  }
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.