From: remillet Date: Wed, 8 Nov 2017 21:36:04 +0000 (-0800) Subject: DRYD-177: Reduce logging output to catalina.out of authority/vocab term creation. X-Git-Url: https://git.aero2k.de/?a=commitdiff_plain;h=ace5a89bdf60d302655d6c6deb3e496f8c204dfb;p=tmp%2Fjakarta-migration.git DRYD-177: Reduce logging output to catalina.out of authority/vocab term creation. --- diff --git a/services/JaxRsServiceProvider/src/main/java/org/collectionspace/services/jaxrs/CSpaceResteasyBootstrap.java b/services/JaxRsServiceProvider/src/main/java/org/collectionspace/services/jaxrs/CSpaceResteasyBootstrap.java index a8f081ff0..1f6e319d3 100644 --- a/services/JaxRsServiceProvider/src/main/java/org/collectionspace/services/jaxrs/CSpaceResteasyBootstrap.java +++ b/services/JaxRsServiceProvider/src/main/java/org/collectionspace/services/jaxrs/CSpaceResteasyBootstrap.java @@ -227,7 +227,7 @@ public class CSpaceResteasyBootstrap extends ResteasyBootstrap { String xmlPayload = client.createAuthorityItemInstance(termShortId, termDisplayName); try { authorityResource.createAuthorityItem(resourceMap, null, authoritySpecifier, xmlPayload); - logger.log(Level.INFO, String.format("Created a new term '%s:%s' in the authority of type '%s' with the short ID of '%s'.", + logger.log(Level.FINE, String.format("Created a new term '%s:%s' in the authority of type '%s' with the short ID of '%s'.", termDisplayName, termShortId, serviceName, authorityInstance.getTitleRef())); } catch (CSWebApplicationException e) { response = e.getResponse();