removed stack trace for existProductWithNameOrId method

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/data-catalogue/ckan-util-library@131996 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Costantino Perciante 2016-09-28 14:48:43 +00:00
parent 1d46a200e6
commit c3a30f738c
1 changed files with 1 additions and 1 deletions

View File

@ -1125,7 +1125,7 @@ public class DataCatalogueImpl implements DataCatalogue{
CkanDataset product = client.getDataset(nameOrId);
return product != null;
}catch(Exception e){
logger.debug("", e);
logger.debug("A dataset with name " + nameOrId + " doesn't exist");
return false;
}
}