From 423e039d0a038473468ae698815633cba82517cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Ml=C3=A1dek?= Date: Thu, 10 Feb 2022 11:39:04 +0100 Subject: [PATCH] forgotten debug prints --- src/routes.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/routes.rs b/src/routes.rs index 73f0d50..dd87408 100644 --- a/src/routes.rs +++ b/src/routes.rs @@ -250,7 +250,6 @@ pub async fn put_object( match in_entry { InEntry::Invariant(in_entry) => { - println!("INVARIANT: {in_entry:?}"); let invariant = Entry::try_from(&InvariantEntry { attribute: in_entry.attribute, value: in_entry.value, @@ -267,7 +266,6 @@ pub async fn put_object( )) } InEntry::Address { entity: in_address } => { - println!("IN_ADDRESS: {in_address:?}"); let address = in_address.try_into().map_err(ErrorBadRequest)?; let entries_to_add = match &address {