git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/data-analysis/DataMiner@173645 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
3d509ae807
commit
bf7e31697d
|
@ -30,7 +30,7 @@ public class InfrastructureDialoguer {
|
|||
public DatabaseInfo getDatabaseInfo(String resourceName) throws Exception{
|
||||
DatabaseInfo dbi = new DatabaseInfo();
|
||||
|
||||
LOGGER.debug("Searching for Database "+resourceName+" in scope "+scope);
|
||||
LOGGER.debug("Searching for Database {} in scope {}", resourceName, scope);
|
||||
SimpleQuery query = queryFor(ServiceEndpoint.class);
|
||||
// query.addCondition("$resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'StatisticalManagerDataBase' ");
|
||||
// query.addCondition("$resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq '"+resourceName+"' ");
|
||||
|
@ -51,7 +51,7 @@ public class InfrastructureDialoguer {
|
|||
dbi.driver = property.value();
|
||||
}
|
||||
|
||||
LOGGER.debug("Found Database : "+dbi);
|
||||
LOGGER.debug("Found Database : {}",dbi);
|
||||
}
|
||||
|
||||
if (dbi.url == null)
|
||||
|
|
Loading…
Reference in New Issue