We have a Java Stored Procedures that refers to other java classes. We want to have logging framework which will log to file during execution.
Currently, I am using
org.apache.commons.logging.Log;
org.apache.commons.logging.LogFactory;
private static final Log logger = LogFactory.getLog(CommonUtils.class);
and declared it in conf/log4j.xml file in Denodo<home>
Any suggestion on how I can get it working.