chore: clean code from stdout logging

This commit is contained in:
2025-10-01 06:23:30 +02:00
parent 97e54e7891
commit 1a890ea98a

View File

@@ -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() {