remove spammy log()

This commit is contained in:
hrshtt
2025-08-19 16:54:31 +05:30
parent 1951ee6a40
commit f2d202c0b5

View File

@@ -107,12 +107,12 @@ script.on_event(defines.events.on_script_path_request_finished, function(event)
if event.path then
global.paths[event.id] = event.path
log("Path found for request ID: " .. event.id)
-- log("Path found for request ID: " .. event.id)
elseif event.try_again_later then
global.paths[event.id] = "busy"
log("Pathfinder busy for request ID: " .. event.id)
-- log("Pathfinder busy for request ID: " .. event.id)
else
global.paths[event.id] = "not_found"
log("Path not found for request ID: " .. event.id)
-- log("Path not found for request ID: " .. event.id)
end
end)