Search in sources :

Example 1 with LoggingPluginInterface

use of org.pentaho.di.core.logging.LoggingPluginInterface in project pentaho-kettle by pentaho.

the class KettleClientEnvironment method initLogginPlugins.

private static void initLogginPlugins(List<PluginInterface> logginPlugins) throws KettlePluginException {
    for (PluginInterface plugin : logginPlugins) {
        LoggingPluginInterface loggingPlugin = (LoggingPluginInterface) PluginRegistry.getInstance().loadClass(plugin);
        loggingPlugin.init();
    }
}
Also used : LoggingPluginInterface(org.pentaho.di.core.logging.LoggingPluginInterface) LoggingPluginInterface(org.pentaho.di.core.logging.LoggingPluginInterface) PluginInterface(org.pentaho.di.core.plugins.PluginInterface)

Aggregations

LoggingPluginInterface (org.pentaho.di.core.logging.LoggingPluginInterface)1 PluginInterface (org.pentaho.di.core.plugins.PluginInterface)1