*/
public final void begin(final String namespace, final String name,
final Attributes attributes) {
org.apache.commons.logging.Log log = LogFactory.
getLog(SCXMLParser.class);
Locator l = digester.getDocumentLocator();
String identifier = l.getSystemId();
if (identifier == null) {
identifier = l.getPublicId();
}
StringBuffer sb = new StringBuffer();
sb.append("Ignoring element <").append(name).
append("> in namespace \"").append(namespace).
append("\" at ").append(identifier).append(":").
append(l.getLineNumber()).append(":").
append(l.getColumnNumber()).append(" and digester match \"").
append(digester.getMatch()).append("\"");
log.warn(sb.toString());
}