From db40844299071e3d7bbe1a33417badfe065f50d5 Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Wed, 28 Feb 2018 00:56:28 +0100 Subject: [PATCH] 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 --- .../mdsal/binding/maven/api/gen/plugin/CodeGeneratorImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.36.6