From 5924a73e25a251385eeae430724ea13b7dd49b5c Mon Sep 17 00:00:00 2001 From: Nicolas80 <nicolas.pmail@protonmail.com> Date: Wed, 26 Mar 2025 13:26:31 +0100 Subject: [PATCH] * Added `debug!` log inside `impl From<DbAccountId> for Value` used to serialize DbAccountId into the String value for the db ** Can be seen when adding `RUST_LOG=debug ` before the `gcli` command * Small fix for clippy remark --- src/entities/vault_account.rs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/entities/vault_account.rs b/src/entities/vault_account.rs index 80586cf..ec81c65 100644 --- a/src/entities/vault_account.rs +++ b/src/entities/vault_account.rs @@ -2,6 +2,7 @@ use crate::commands::{cesium, vault}; use crate::runtime_config::AccountId; use crate::utils::GcliError; use anyhow::anyhow; +use log::debug; use sea_orm::entity::prelude::*; use sea_orm::prelude::async_trait::async_trait; use sea_orm::prelude::StringLen; @@ -162,7 +163,12 @@ impl sea_orm::sea_query::ValueType for DbAccountId { impl From<DbAccountId> for Value { fn from(account_id: DbAccountId) -> Self { - Value::String(Some(Box::new(account_id.0.to_string()))) + let account_id_string = account_id.0.to_string(); + debug!( + "DB converting DbAccountId to string:'{}'", + account_id_string + ); + Value::String(Some(Box::new(account_id_string))) } } @@ -782,7 +788,7 @@ where .filter( Condition::any() .add(Column::Parent.eq(current_account.address.clone())) - .add(Column::Parent.eq(format!("\"{}\"",current_account.address.to_string()))), + .add(Column::Parent.eq(format!("\"{}\"", current_account.address))), ) .order_by_asc(Column::Address) .all(db) -- GitLab