This is an automated email from the ASF dual-hosted git repository.
aldrin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git
The following commit(s) were added to refs/heads/master by this push:
new 9526712 MINIFICPP-768: Change log level of trigger statement
9526712 is described below
commit 952671218c985854098ec87deef9085c1805c16e
Author: Marc Parisi <[email protected]>
AuthorDate: Fri May 17 10:38:21 2019 -0400
MINIFICPP-768: Change log level of trigger statement
---
libminifi/src/c2/C2Agent.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libminifi/src/c2/C2Agent.cpp b/libminifi/src/c2/C2Agent.cpp
index f2f9999..e3dc90a 100644
--- a/libminifi/src/c2/C2Agent.cpp
+++ b/libminifi/src/c2/C2Agent.cpp
@@ -127,7 +127,7 @@ C2Agent::C2Agent(const
std::shared_ptr<core::controller::ControllerServiceProvid
}
void C2Agent::checkTriggers() {
- logger_->log_info("Checking %d triggers", triggers_.size());
+ logger_->log_debug("Checking %d triggers", triggers_.size());
for (const auto &trigger : triggers_) {
if (trigger->triggered()) {
/**