Commit 368f4927 authored by Alp Deniz Ogut's avatar Alp Deniz Ogut
Browse files

Log created edges during bulk request

parent 64c91aee
Pipeline #4088 failed with stages
Showing with 2 additions and 1 deletion
+2 -1
......@@ -185,10 +185,11 @@ pub fn bulk_tx(
database_key: &DatabaseKey,
) -> Result<Value> {
info!(
"Performing bulk action with {} new items, {} updated items, {} deleted items",
"Performing bulk action with {} new items, {} updated items, {} deleted items, {} created edges",
bulk.create_items.len(),
bulk.update_items.len(),
bulk.delete_items.len(),
bulk.create_edges.len(),
);
let mut created_items = Vec::new();
for item in bulk.create_items {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment