164165166167168169170171172173174
protected final void debug(String msg, Object... args) { Log log = getLog(); if (log != null && log.isDebugEnabled()) { log.debug(String.format(msg, args)); } } public ToolContext createContext() {
175176177178179180181182183184185