mirror of
https://github.com/JackHopkins/factorio-learning-environment.git
synced 2025-09-06 13:23:58 +00:00
remove spammy log()
This commit is contained in:
6
fle/env/tools/admin/request_path/server.lua
vendored
6
fle/env/tools/admin/request_path/server.lua
vendored
@@ -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)
|
Reference in New Issue
Block a user