All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alogic.xscript.plugins.Log Maven / Gradle / Ivy

There is a newer version: 1.6.17
Show newest version
package com.alogic.xscript.plugins;

import java.util.Map;

import com.alogic.xscript.AbstractLogiclet;
import com.alogic.xscript.ExecuteWatcher;
import com.alogic.xscript.Logiclet;
import com.alogic.xscript.LogicletContext;
import com.anysoft.util.Properties;
import com.anysoft.util.PropertiesConstants;

/**
 * 输出日志
 * 
 * @author duanyy
 *
 */
public class Log extends AbstractLogiclet{
	protected String pattern;
	protected String level;
	protected int progress = -2;
	
	public Log(String tag, Logiclet p) {
		super(tag, p);
	}

	public void configure(Properties p){
		super.configure(p);
		pattern = p.GetValue("msg", "", false, true);
		level = p.GetValue("level", "info", false, true);
		progress = PropertiesConstants.getInt(p,"progress", -2);		
	}
	
	@Override
	protected void onExecute(Map root, Map current, LogicletContext ctx,
			ExecuteWatcher watcher) {
		log(ctx.transform(pattern),level,progress);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy