From caa26511638de17ae1674b153b6f23df1964a52f Mon Sep 17 00:00:00 2001 From: lizzie Date: Mon, 2 Feb 2026 23:12:17 +0000 Subject: [PATCH] leave pending param package stuff --- src/common/param_package.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/common/param_package.cpp b/src/common/param_package.cpp index b2803a4fcf..c4cded8735 100644 --- a/src/common/param_package.cpp +++ b/src/common/param_package.cpp @@ -78,7 +78,9 @@ std::string ParamPackage::Serialize() const { std::string ParamPackage::Get(const std::string& key, const std::string& default_value) const { auto pair = data.find(key); if (pair == data.end()) { +#ifndef __OPENORBIS__ LOG_TRACE(Common, "key '{}' not found", key); +#endif return default_value; } @@ -88,7 +90,9 @@ std::string ParamPackage::Get(const std::string& key, const std::string& default int ParamPackage::Get(const std::string& key, int default_value) const { auto pair = data.find(key); if (pair == data.end()) { +#ifndef __OPENORBIS__ LOG_TRACE(Common, "key '{}' not found", key); +#endif return default_value; } @@ -103,7 +107,9 @@ int ParamPackage::Get(const std::string& key, int default_value) const { float ParamPackage::Get(const std::string& key, float default_value) const { auto pair = data.find(key); if (pair == data.end()) { +#ifndef __OPENORBIS__ LOG_TRACE(Common, "key {} not found", key); +#endif return default_value; }