should set catalogManager debug level a bit ealier
--------------------------------------------------
Key: CXF-2063
URL: https://issues.apache.org/jira/browse/CXF-2063
Project: CXF
Issue Type: Improvement
Components: Core
Reporter: Freeman Fang
Assignee: Freeman Fang
Priority: Trivial
Fix For: 2.2, 2.0.11, 2.1.5
currently in OASISCatalogManager() it's
public OASISCatalogManager() {
CatalogManager catalogManager = new CatalogManager();
catalogManager.setUseStaticCatalog(false);
catalogManager.setIgnoreMissingProperties(true);
CatalogResolver catalogResolver = new CatalogResolver(catalogManager);
if (DEBUG_LEVEL != null) {
catalogManager.debug.setDebug(Integer.parseInt(DEBUG_LEVEL));
}
this.resolver = catalogResolver.getCatalog();
}
but we need set debug level before new CatalogResolver(catalogManager) so that
we can see the debug log in new CatalogResolver(catalogManager),
this is useful if some exception throw from new CatalogResolver(catalogManager)
and we need more info in this case
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.