From: Robert Varga Date: Tue, 27 Feb 2018 23:56:28 +0000 (+0100) Subject: Silence code generator a bit X-Git-Tag: release/fluorine~315 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=db40844299071e3d7bbe1a33417badfe065f50d5;p=mdsal.git Silence code generator a bit We do not need an explicit INFO whenever a service is generated. Lower the level at which this information is logged to debug. Change-Id: Ifab29e0cec7519135e1d96adc486134d3204c329 Signed-off-by: Robert Varga --- diff --git a/binding/maven-sal-api-gen-plugin/src/main/java/org/opendaylight/mdsal/binding/maven/api/gen/plugin/CodeGeneratorImpl.java b/binding/maven-sal-api-gen-plugin/src/main/java/org/opendaylight/mdsal/binding/maven/api/gen/plugin/CodeGeneratorImpl.java index 2f7175a315..edc4ec9dd6 100644 --- a/binding/maven-sal-api-gen-plugin/src/main/java/org/opendaylight/mdsal/binding/maven/api/gen/plugin/CodeGeneratorImpl.java +++ b/binding/maven-sal-api-gen-plugin/src/main/java/org/opendaylight/mdsal/binding/maven/api/gen/plugin/CodeGeneratorImpl.java @@ -88,7 +88,7 @@ public final class CodeGeneratorImpl implements BasicCodeGenerator, BuildContext Set moduleInfoProviders = generateYangModuleInfo(outputBaseDir, module, context, moduleResourcePathResolver, currentProvidersBuilder); ImmutableSet currentProviders = currentProvidersBuilder.build(); - LOG.info("Adding ModuleInfo providers {}", currentProviders); + LOG.debug("Adding ModuleInfo providers {}", currentProviders); bindingProviders.addAll(currentProviders); result.addAll(moduleInfoProviders); }