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"; } }); }