Removed log.info call from tunables_service. (#2420)

This commit is contained in:
gir489 2023-11-16 08:18:39 -05:00 committed by GitHub
parent 48e83d9d5d
commit af287d2593
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -53,11 +53,10 @@ namespace big
if (auto tunable = get_tunable<T*>(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<T*>(hash))
{
*tunable = value;
LOG(INFO) << "Delay set";
}
});
}