From: Christopher Date: Thu, 16 Apr 2020 15:58:39 +0000 (-0500) Subject: more logging X-Git-Url: http://git.entropealabs.com/?a=commitdiff_plain;h=128dfc2161e209d539241ae06f78a76c756b6058;p=cluster_kv.git more logging --- diff --git a/lib/cluster_kv/db.ex b/lib/cluster_kv/db.ex index 9b0cd01..48c2741 100644 --- a/lib/cluster_kv/db.ex +++ b/lib/cluster_kv/db.ex @@ -143,6 +143,7 @@ defmodule ClusterKV.DB do batch |> Enum.slice(last_batch, chunk) |> Enum.each(fn {_k, _v} = v -> + Logger.info("Batch processing: #{inspect(v)}") :ets.insert_new(db, v) # do_upsert(db, k, v, fun) end)