Removed log.info call from tunables_service. (#2420)
This commit is contained in:
parent
48e83d9d5d
commit
af287d2593
@ -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";
|
||||
}
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user