From af287d259328c55b7a2d689fe2013d1521d62efe Mon Sep 17 00:00:00 2001 From: gir489 <100792176+gir489returns@users.noreply.github.com> Date: Thu, 16 Nov 2023 08:18:39 -0500 Subject: [PATCH] Removed log.info call from tunables_service. (#2420) --- src/services/tunables/tunables_service.hpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/services/tunables/tunables_service.hpp b/src/services/tunables/tunables_service.hpp index ccf5cebf..6cf0e8e1 100644 --- a/src/services/tunables/tunables_service.hpp +++ b/src/services/tunables/tunables_service.hpp @@ -53,11 +53,10 @@ namespace big if (auto tunable = get_tunable(hash)) { *tunable = value; - LOG(INFO) << "Imm set"; } else { - LOG(INFO) << "Not found"; + LOG(WARNING) << "Tunable 0x" << hash << " not found."; } } else @@ -69,8 +68,6 @@ namespace big if (auto tunable = get_tunable(hash)) { *tunable = value; - - LOG(INFO) << "Delay set"; } }); }