mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 18:11:27 -07:00
Prevent redundant FFlag configuration logs
This commit is contained in:
parent
1fda39bfb5
commit
f5da33e929
@ -140,9 +140,16 @@ namespace Bloxstrap
|
||||
else
|
||||
{
|
||||
if (Prop.ContainsKey(key))
|
||||
{
|
||||
if (key == Prop[key].ToString())
|
||||
return;
|
||||
|
||||
App.Logger.WriteLine(LOG_IDENT, $"Changing of '{key}' from '{Prop[key]}' to '{value}' is pending");
|
||||
}
|
||||
else
|
||||
{
|
||||
App.Logger.WriteLine(LOG_IDENT, $"Setting of '{key}' to '{value}' is pending");
|
||||
}
|
||||
|
||||
Prop[key] = value.ToString()!;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user