Examples of info()


Examples of org.jboss.logging.Logger.info()

      try
      {
         InitialContext localCtx = new InitialContext();
         Hashtable localEnv = localCtx.getEnvironment();

         tmsLog.info("Checking removed hosts JNDI binding");
         this.doLookups(localEnv, tmsLog, removed);
         tmsLog.info("Checking added hosts JNDI binding");
         this.doLookups(localEnv, tmsLog, added);
         tmsLog.info("Checking members hosts JNDI binding");
         this.doLookups(localEnv, tmsLog, members);
View Full Code Here

Examples of org.jfrog.build.util.IvyBuildInfoLog.info()

    public void messageLogged(BuildEvent event) {
    }

    private void doDeploy(BuildEvent event) {
        IvyBuildInfoLog log = getBuildInfoLog(event);
        log.info("[buildinfo:ant] Starting deployment");
        Project project = event.getProject();
        Set<DeployDetails> deployDetails = ctx.getDeployDetails();
        BuildInfoBuilder builder = new BuildInfoBuilder(project.getName()).modules(ctx.getModules())
                .number("0").durationMillis(System.currentTimeMillis() - ctx.getBuildStartTime())
                .startedDate(new Date(ctx.getBuildStartTime()))
View Full Code Here

Examples of org.jolokia.util.LogHandler.info()

    protected Restrictor createRestrictor(String pLocation) {
        LogHandler log = getLogHandler();
        try {
            Restrictor newRestrictor = RestrictorFactory.lookupPolicyRestrictor(pLocation);
            if (newRestrictor != null) {
                log.info("Using access restrictor " + pLocation);
                return newRestrictor;
            } else {
                log.info("No access restrictor found at " + pLocation + ", access to all MBeans is allowed");
                return new AllowAllRestrictor();
            }
View Full Code Here

Examples of org.jostraca.util.CommandLineUserMessageHandler.info()

    umh.setThreshold( UserMessageHandler.INFO );
    umh.add( UserMessageHandler.DEBUG, "debug03 FAIL" );

    umh.debug( "debug04 FAIL" );
    umh.info"info01" );
    umh.warn"warn01" );
    umh.error( "error01" );
    umh.fatal( "fatal01" );

    umh.info( "foo:", "bar" );
View Full Code Here

Examples of org.jostraca.util.RecordingUserMessageHandler.info()

    umh.debug( "debug02" );

    assertEquals( "DEBUG: debug01\nDEBUG: debug02\n", umh.toString( ) );
    assertEquals( "DEBUG: debug01\nDEBUG: debug02\n", umh.toString( UserMessageHandler.DEBUG ) );

    umh.info"info01" );
    umh.warn"warn01" );
    umh.error( "error01" );
    umh.fatal( "fatal01" );

    assertEquals( "DEBUG: debug01\nDEBUG: debug02\n", umh.toString( UserMessageHandler.DEBUG ) );
View Full Code Here

Examples of org.jostraca.util.UserMessageHandler.info()

    umh.setThreshold( UserMessageHandler.INFO );
    umh.add( UserMessageHandler.DEBUG, "debug03 FAIL" );

    umh.debug( "debug04 FAIL" );
    umh.info"info01" );
    umh.warn"warn01" );
    umh.error( "error01" );
    umh.fatal( "fatal01" );

    umh.info( "foo:", "bar" );
View Full Code Here

Examples of org.jpos.transaction.participant.BSHTransactionParticipant.info()

        Logger logger = new Logger();
        SimpleLogSource bSHTransactionParticipant = new BSHTransactionParticipant();
        logger.addListener(null);
        bSHTransactionParticipant.setLogger(logger, "testSimpleLogSourceRealm");
        try {
            bSHTransactionParticipant.info("testSimpleLogSourceDetail");
            fail("Expected NullPointerException to be thrown");
        } catch (NullPointerException ex) {
            assertNull("ex.getMessage()", ex.getMessage());
        }
    }
View Full Code Here

Examples of org.jzonic.jlo.Logger.info()

        return suite;
    }

    public void testLog() {
        Logger logger = LogManager.getLogger("org.jzonic.sql","db");
        logger.info("Hello wolrd");
    }
}
View Full Code Here

Examples of org.olat.core.logging.OLog.info()

        while ((strLine = br.readLine()) != null) {
          if (StringHelper.containsNonWhitespace(strLine)) {
            strLine = strLine.trim();
            if ( ! strLine.startsWith("#")) {
              blacklist.add(strLine.trim());
              log.info("Excluding chelp path::" + strLine + " - found on blacklist::" + blackListFile.getAbsolutePath());             
            }
          }
        }
        in.close();
      } catch (Exception e) {
View Full Code Here

Examples of org.opennebula.client.user.User.info()

        // We can create a representation for the new user, using the returned
        // user-ID
        User javaUser = new User(userID, oneClient);

        // And request its information
        rc = javaUser.info();

        // Alternatively we could have requested the user's info with the
        // static info method:
        // rc = User.info(oneClient, userID);
        // and processed the xml returned in the message of the OneResponse.
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.