Subversion Repositories SmartDukaan

Rev

Rev 773 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 773 Rev 832
Line 6... Line 6...
6
 
6
 
7
import java.io.IOException;
7
import java.io.IOException;
8
 
8
 
9
import org.apache.juli.logging.Log;
9
import org.apache.juli.logging.Log;
10
import org.apache.juli.logging.LogFactory;
10
import org.apache.juli.logging.LogFactory;
-
 
11
import org.apache.log4j.Logger;
11
import org.apache.struts2.convention.annotation.Action;
12
import org.apache.struts2.convention.annotation.Action;
12
 
13
 
13
/**
14
/**
14
 * 
15
 * 
15
 * @author rajveer
16
 * @author rajveer
Line 24... Line 25...
24
	private static final long serialVersionUID = 1L;
25
	private static final long serialVersionUID = 1L;
25
 
26
 
26
	/**
27
	/**
27
	 * 
28
	 * 
28
	 */
29
	 */
29
	private static Log log = LogFactory.getLog(HomeController.class);
30
	private static Logger log = Logger.getLogger(Class.class);
30
	
31
	
31
	public HomeController(){
32
	public HomeController(){
32
		super();
33
		super();
33
	}
34
	}
34
 
35