Make indexing logs rewrite themselves

This commit is contained in:
Ekaterina Vaartis 2021-08-22 23:47:43 +03:00 committed by FloatingGhost
parent 0cf3654907
commit 5360cc1097

View file

@ -57,7 +57,9 @@ def run(["index"]) do
|> Stream.transform(0, fn objects, acc ->
new_acc = acc + Enum.count(objects)
IO.puts("Indexed #{new_acc} entries")
# Reset to the beginning of the line and rewrite it
IO.write("\r")
IO.write("Indexed #{new_acc} entries")
{[objects], new_acc}
end)
@ -76,6 +78,8 @@ def run(["index"]) do
end,
timeout: :infinity
)
IO.write("\n")
end
def run(["clear"]) do