From ac446b228a3dfe9f2bdda932562e63be34175f48 Mon Sep 17 00:00:00 2001 From: "hinto.janai" Date: Sun, 5 May 2024 14:43:59 -0400 Subject: [PATCH] database: add `tracing` --- Cargo.lock | 1 + database/Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 0750040..efdeb1a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -559,6 +559,7 @@ dependencies = [ "tokio", "tokio-util", "tower", + "tracing", ] [[package]] diff --git a/database/Cargo.toml b/database/Cargo.toml index 712dbb1..8a827c7 100644 --- a/database/Cargo.toml +++ b/database/Cargo.toml @@ -33,6 +33,7 @@ monero-serai = { workspace = true, features = ["std"] } paste = { workspace = true } page_size = { version = "0.6.0" } # Needed for database resizes, they must be a multiple of the OS page size. thiserror = { workspace = true } +tracing = { workspace = true } # `service` feature. crossbeam = { workspace = true, features = ["std"], optional = true }