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();
}
}
Aggregations