This is an automated email from the ASF dual-hosted git repository.

martinzink pushed a commit to branch apache-rusty
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git

commit 9f2e4cd8424c26f0ff90998daa089ea9bc0f47f2
Author: Martin Zink <[email protected]>
AuthorDate: Tue Mar 3 12:09:00 2026 +0100

    warn
---
 libminifi/src/core/flow/StructuredConfiguration.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libminifi/src/core/flow/StructuredConfiguration.cpp 
b/libminifi/src/core/flow/StructuredConfiguration.cpp
index 2a364ce86..2fb599e0e 100644
--- a/libminifi/src/core/flow/StructuredConfiguration.cpp
+++ b/libminifi/src/core/flow/StructuredConfiguration.cpp
@@ -246,7 +246,7 @@ void 
StructuredConfiguration::parseParameterProvidersNode(const Node& parameter_
         parsePropertiesNode(propertiesNode, *parameter_provider, name, 
nullptr);
       }
     } else {
-      logger_->log_debug("Could not locate {}", type);
+      logger_->log_warn("Could not locate {}", type);
     }
     parameter_provider->setName(name);
     auto parameter_contexts = parameter_provider->createParameterContexts();
@@ -671,7 +671,7 @@ void StructuredConfiguration::parseControllerServices(const 
Node& controller_ser
       parent_group->addControllerService(controller_service_node->getName(), 
controller_service_node);
       
parent_group->addControllerService(controller_service_node->getUUIDStr(), 
controller_service_node);
     } else {
-      logger_->log_debug("Could not locate {}", type);
+      logger_->log_warn("Could not locate {}", type);
     }
   }
 }

Reply via email to