chore(inferium-harvester): remove print messages

This commit is contained in:
Guillaume ARM 2024-05-20 21:05:10 +02:00
parent 930b104522
commit 340d5f4cff

View File

@ -389,18 +389,12 @@ local function replantProcedure()
local seedsToPlant = utils.shallowDiff(remotePlan, localPlan)
if utils.sizeof(seedsToRemove) > 0 then
print('nb seeds to remove: ' .. utils.sizeof(seedsToRemove))
removeSeeds(seedsToRemove)
else
print('no seeds to remove')
end
if utils.sizeof(seedsToPlant) > 0 then
print('nb seeds to plants: ' .. utils.sizeof(seedsToPlant))
retrieveSeeds(seedsToPlant)
replantSeeds()
else
print('no seeds to plant')
end
localPlan = remotePlan