Does anyone know how to instruct scriptella to log to catalina开发者_运维知识库 Log What should one write in etl.xml to enable logging?
Scriptella is using a standard JU logging mechanism. If you want to see all log messages of Scriptella in catalina.out, the easiest solution would be to append the following line to the conf/logging.properties file of the Tomcat installation:
scriptella.level=FINE
By default only Level.INFO messages are printed. See Using java.util.logging
精彩评论