Fixing log
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/information-system/resource-registry-publisher@134389 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
dabca09189
commit
9c8852f225
|
@ -385,7 +385,7 @@ public class ResourceRegistryPublisherImpl implements ResourceRegistryPublisher
|
|||
logger.info("{} successfully created", r);
|
||||
return r;
|
||||
} catch (Exception e) {
|
||||
logger.error("Error Creating Facet", e);
|
||||
logger.error("Error Creating {}", resource, e);
|
||||
throw new ServiceException(e);
|
||||
}
|
||||
}
|
||||
|
@ -455,7 +455,7 @@ public class ResourceRegistryPublisherImpl implements ResourceRegistryPublisher
|
|||
logger.info("{} successfully created", c);
|
||||
return c;
|
||||
} catch (Exception e) {
|
||||
logger.error("Error Creating Facet", e);
|
||||
logger.error("Error Creating {}", consistsOf, e);
|
||||
throw new ServiceException(e);
|
||||
}
|
||||
}
|
||||
|
@ -529,7 +529,7 @@ public class ResourceRegistryPublisherImpl implements ResourceRegistryPublisher
|
|||
logger.info("{} successfully created", i);
|
||||
return i;
|
||||
} catch (Exception e) {
|
||||
logger.error("Error Creating Facet", e);
|
||||
logger.error("Error Creating {}", isRelatedTo, e);
|
||||
throw new ServiceException(e);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue