From d8611fd376e93d903f7f0309dfe4d4ee310f0440 Mon Sep 17 00:00:00 2001 From: Helio Frota <00hf11@gmail.com> Date: Thu, 7 Mar 2024 17:33:44 -0300 Subject: [PATCH] chore: enable readable debug log --- backend/api/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/api/Cargo.toml b/backend/api/Cargo.toml index d79c1319..a789e831 100644 --- a/backend/api/Cargo.toml +++ b/backend/api/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" trustify-entity = { path = "../entity"} trustify-common = { path = "../common" } trustify-migration = { path = "../migration" } -sea-orm = { version = "0.12", features = [ "sea-query-binder", "sqlx-postgres", "runtime-tokio-rustls", "macros" ] } +sea-orm = { version = "0.12", features = [ "sea-query-binder", "sqlx-postgres", "runtime-tokio-rustls", "macros", "debug-print" ] } sea-query = "0.30.0" sea-orm-migration = "0.12.2" tokio = { version = "1.30.0", features = ["full"] }