Examples of info()


Examples of net.sf.gluebooster.java.booster.essentials.logging.LogBooster.info()

      for (MethodDoc method:  classDoc.methods()){
        handler.modify(classDoc, method, foundExamples, protocol);
      }
    }
   
    protocol.info("created links to examples for: ", foundExamples);

    return root;
  }

 
View Full Code Here

Examples of net.sourceforge.pebble.domain.Blog.info()

            }
          }
        }
      }

      blog.info("Files uploaded.");
    } catch (Exception e) {
      throw new ServletException(e);
    }

    FileMetaData directory = fileManager.getFileMetaData(path);
View Full Code Here

Examples of net.sourceforge.squirrel_sql.fw.util.log.ILogger.info()

    {
      Logger.getRootLogger().removeAllAppenders();
      BasicConfigurator.configure(fa);
      final ILogger log = createLogger(getClass());
      if (log.isInfoEnabled()) {
        log.info("No logger configuration file passed on command line arguments. Using default log file: "
          + fa.getFile());
      }
    }
    if (doStartupLogging)
    {
View Full Code Here

Examples of nexj.core.util.Logger.info()

     
      msg.setValue("message", msg1);
     
      Logger logger = Logger.getLogger("TransformerTest");
     
      logger.info("source: " + msg.toString());
     
      // transform message
      TransferObject res = m_tf.transform(msg, m_metadata.getTransformation("MapMessage"));

      logger.info("result: " + res.toString());
View Full Code Here

Examples of org.apache.avalon.framework.logger.CommonsLogger.info()

        mockLog.expects(once()).method("info").with(eq("JUnit"));
        mockLog.expects(once()).method("info").with(eq("JUnit"), same(exception));

        if(logger.isInfoEnabled())
        {
            logger.info("JUnit");
            logger.info("JUnit", exception);
        }
    }

    /**
 
View Full Code Here

Examples of org.apache.avalon.framework.logger.ConsoleLogger.info()

    {
        final Runnable runnable = new Runnable(){
            public void run()
            {
                final ConsoleLogger logger = new ConsoleLogger( ConsoleLogger.LEVEL_DEBUG );
                logger.info( "runnable runs" );
                try
                {
                    Thread.sleep( 1000 );
                }
                catch( final InterruptedException ie )
View Full Code Here

Examples of org.apache.avalon.framework.logger.Logger.info()

    {
        final Logger logger = getLogger();
        //final String cat = logger.getCategory();
        //defaultLogger.info( "Category is " + cat );
        logger.debug( message );
        logger.info( message );
        logger.warn( message );
        logger.error( message );
        logger.fatalError( message );
    }
}
View Full Code Here

Examples of org.apache.click.service.LogService.info()

        try {
            InputStream is = getResourceAsStream(descriptorFile, ClickUtils.class);
            List fileList = IOUtils.readLines(is);
            if (fileList == null || fileList.isEmpty()) {
                logService.info("there are no files to deploy for control " + controlClass.getName());
                return;
            }

            // a target dir list is required cause the ClickUtils.deployFile() is too inflexible to autodetect
            // required subdirectories.
View Full Code Here

Examples of org.apache.cloudstack.utils.qemu.QemuImg.info()

                Script.runSimpleBashScript("chmod 755 " + destPath);
                Script.runSimpleBashScript("cp -p -r " + sourcePath + "/* " + destPath);
            } else {
                srcFile = new QemuImgFile(sourcePath, sourceFormat);
                try {
                    Map<String, String> info = qemu.info(srcFile);
                    String backingFile = info.get(new String("backing_file"));
                    if (sourceFormat.equals(destFormat) && backingFile == null) {
                        Script.runSimpleBashScript("cp -f " + sourcePath + " " + destPath);
                    } else {
                        destFile = new QemuImgFile(destPath, destFormat);
View Full Code Here

Examples of org.apache.commons.logging.Log.info()

public class CommonsLoggingTest extends TestCase {

  public void testLogging() {       
    Log log = LogFactory.getLog(CommonsLoggingTest.class);
        log.info("Hello");                           
    }  
}
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.