We are using mybatis 3, I am want to see the SQL logs but couldn't find how to enable it. I am using log4j in my application. I followed this mybatis documentation - http://mybatis.github.io/mybatis-3/logging.html , but when I run the application I get the below exception. Am I missing something,
Cause: org.apache.ibatis.builder.BuilderException: Error parsing SQL Mapper Configuration. Cause: org.apache.ibatis.builder.BuilderException: The setting logImpl is not known. Make sure you spelled it correctly (case sensitive).
Have given this setting in mybatis configuration file under configuration
<settings>
<setting name="logImpl" value="LOG4J"/>
</settings>