Examples of LogProcessor


Examples of org.apache.camel.processor.LogProcessor

        }
        // should be INFO by default
        LoggingLevel level = getLoggingLevel() != null ? getLoggingLevel() : LoggingLevel.INFO;
        Logger logger = new Logger(name, level);

        return new LogProcessor(exp, logger);
    }
View Full Code Here

Examples of org.apache.synapse.processors.builtin.LogProcessor

public class BulitinProcessorTest extends TestCase {
    public void testLogProcessor() throws Exception {
        SynapseMessage sm = new Axis2SynapseMessage(
                Axis2EnvSetup.axis2Deployment("target/synapse-repository"));
        Processor log = new LogProcessor();
        boolean result = log.process(null,sm);
        assertTrue(result);
    }
View Full Code Here

Examples of org.apache.synapse.processors.builtin.LogProcessor

    return LOG_Q;
  }


  public Processor createProcessor(SynapseEnvironment se, OMElement el) {
    LogProcessor lp = new LogProcessor();
    super.setNameOnProcessor(se,el,lp);
    return lp;
  }
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.