Package org.pentaho.di.core.logging

Examples of org.pentaho.di.core.logging.LogLevel


      }

      debug( Messages.getInstance().getString( "Kettle.DEBUG_PREPARING_TRANSFORMATION" ) ); //$NON-NLS-1$

      try {
        LogLevel lvl = getLogLevel();
        trans.setLogLevel( lvl );
        trans.prepareExecution( transMeta.getArguments() );
      } catch ( Exception e ) {
        throw new KettleComponentException( Messages.getInstance().getErrorString(
            "Kettle.ERROR_0011_TRANSFORMATION_PREPARATION_FAILED" ), e ); //$NON-NLS-1$
View Full Code Here


      try {
        if ( ComponentBase.debug ) {
          debug( Messages.getInstance().getString( "Kettle.DEBUG_STARTING_JOB" ) ); //$NON-NLS-1$
        }
        LogLevel lvl = getLogLevel();
        job.setLogLevel( lvl );
        job.start();
      } catch ( Exception e ) {
        throw new KettleComponentException( Messages.getInstance()
            .getErrorString( "Kettle.ERROR_0022_JOB_START_FAILED" ), e ); //$NON-NLS-1$
View Full Code Here

TOP

Related Classes of org.pentaho.di.core.logging.LogLevel

Copyright © 2018 www.massapicom. 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.