From 1a890ea98a9222572fb766ab4259387f3ef82e77 Mon Sep 17 00:00:00 2001 From: davidemazzocchi Date: Wed, 1 Oct 2025 06:23:30 +0200 Subject: [PATCH] chore: clean code from stdout logging --- 01.workspace/heave/src/fun/sqlite_persist_catalog.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/01.workspace/heave/src/fun/sqlite_persist_catalog.rs b/01.workspace/heave/src/fun/sqlite_persist_catalog.rs index 6d2754b..7ead46a 100644 --- a/01.workspace/heave/src/fun/sqlite_persist_catalog.rs +++ b/01.workspace/heave/src/fun/sqlite_persist_catalog.rs @@ -37,7 +37,6 @@ fn write_attribute(attribute: &Attribute, entity: &Entity, transaction: &rusqlit fn write_entity(entity: &Entity, transaction: &rusqlite::Transaction) { let entity_id = [&entity.id]; let entity_values = (&entity.id, &entity.class); - println!("Writing: {:?}", entity_values); let _ = transaction.execute(DELETE_ENTITY_STATEMENT, entity_id); let _ = transaction.execute(INSERT_ENTITY_STATEMENT, entity_values); for (_key, attribute) in entity.attributes.iter() {