1
2
3
4
5
6
7 package org.state4j.sm.executors;
8
9 import org.apache.commons.logging.Log;
10 import org.apache.commons.logging.LogFactory;
11 import org.state4j.sm.SmContext;
12 import org.state4j.sm.SmExecutor;
13
14 /***
15 * @author andrea
16 *
17 * TODO To change the template for this generated type comment go to Window -
18 * Preferences - Java - Code Style - Code Templates
19 */
20 public class SmLogExecutorImpl implements SmExecutor {
21 private static Log logger = LogFactory.getLog(SmLogExecutorImpl.class.getName());
22
23 public void execute(SmContext cntx) {
24 logger.debug("execute(cntx) from action: " + this.getClass().getName());
25 }
26 }