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

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


The following commit(s) were added to refs/heads/main by this push:
     new 4263328d2 MINIFICPP-2788 Change corecomponentstate initialization log 
level to debug
4263328d2 is described below

commit 4263328d2df64ef1bd9cd4ce68183ec2009bd8de
Author: Gabor Gyimesi <[email protected]>
AuthorDate: Mon Apr 20 12:19:07 2026 +0200

    MINIFICPP-2788 Change corecomponentstate initialization log level to debug
    
    Closes #2160
    
    Signed-off-by: Marton Szasz <[email protected]>
---
 extensions/rocksdb-repos/controllers/RocksDbStateStorage.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/extensions/rocksdb-repos/controllers/RocksDbStateStorage.cpp 
b/extensions/rocksdb-repos/controllers/RocksDbStateStorage.cpp
index 4fa773eac..17e8e3ae3 100644
--- a/extensions/rocksdb-repos/controllers/RocksDbStateStorage.cpp
+++ b/extensions/rocksdb-repos/controllers/RocksDbStateStorage.cpp
@@ -134,7 +134,7 @@ bool RocksDbStateStorage::get(const std::string& key, 
std::string& value) {
     if (status.getState() != nullptr) {
       logger_->log_error("Failed to Get key {} from RocksDB database at {}, 
error: {}", key.c_str(), directory_.c_str(), status.getState());
     } else {
-      logger_->log_info("Failed to Get key {} from RocksDB database at {} (it 
may not have been initialized yet)", key.c_str(), directory_.c_str());
+      logger_->log_debug("Failed to Get key {} from RocksDB database at {} (it 
may not have been initialized yet)", key.c_str(), directory_.c_str());
     }
     return false;
   }

Reply via email to