Changed log from debug to error with exception info

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/accounting/accounting-lib@119209 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Luca Frosini 2015-09-29 16:22:58 +00:00
parent f66e3bbfcb
commit 534b1aa042
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ public abstract class AccountingPersistenceFactory {
persistence = foundPersistence;
break;
} catch (Exception e) {
logger.error(String.format("%s not initialized correctly. It will not be used. Trying the next one if any.", foundPersistence.getClass().getSimpleName()), e.getCause());
logger.error(String.format("%s not initialized correctly. It will not be used. Trying the next one if any.", foundPersistence.getClass().getSimpleName()), e);
}
}
if(persistence==null){