Skip to content
Snippets Groups Projects
Commit 43ffa387 authored by srosse's avatar srosse
Browse files

no-jira: remove log.audit for debugging purpose

parent bf61265b
No related branches found
No related tags found
No related merge requests found
......@@ -328,20 +328,17 @@ public class RepositoryEntriesResource {
RepositoryService repositoryService = CoreSpringFactory.getImpl(RepositoryService.class);
RepositoryHandlerFactory handlerFactory = CoreSpringFactory.getImpl(RepositoryHandlerFactory.class);
try {
RepositoryHandler handler = null;
for(String type:handlerFactory.getSupportedTypes()) {
RepositoryHandler h = handlerFactory.getRepositoryHandler(type);
ResourceEvaluation eval = h.acceptImport(fResource, fResource.getName());
log.audit("Handler: " + type + " validity: " + (eval != null && eval.isValid()));
if(eval != null && eval.isValid()) {
handler = h;
break;
}
}
RepositoryEntry addedEntry = null;
if(handler != null) {
Locale locale = I18nModule.getDefaultLocale();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment