Added BranchLoopBoost feature

Changed some LogInfo into LogDebug
This commit is contained in:
LadyAliceMargatroid 2024-08-19 02:15:57 -07:00
parent 383c879b96
commit ee39083689
12 changed files with 345 additions and 47 deletions

View file

@ -25,7 +25,7 @@ namespace DunGenPlus.Components.Props
}
internal static void UpdateCycle(int value){
Plugin.logger.LogInfo($"Updating SpawnSyncedObject start cycle to {value}");
Plugin.logger.LogDebug($"Updating SpawnSyncedObject start cycle to {value}");
cycle = value;
cycleDictionary = new Dictionary<int, int>();
}
@ -37,7 +37,7 @@ namespace DunGenPlus.Components.Props
}
cycleDictionary[id] = value + 1;
Plugin.logger.LogInfo($"Cycle{id}: {value}");
Plugin.logger.LogDebug($"Cycle{id}: {value}");
return value;
}