taler-rust

GNU Taler code in Rust. Largely core banking integrations.
Log | Files | Refs | Submodules | README | LICENSE

commit c1de21a6fed81c424564aaee60e6ecc82fc9572b
parent d4d40c2213b7459668e6903d1fbc2e9152b0d145
Author: Antoine A <>
Date:   Sat, 23 May 2026 14:12:31 +0200

common: filter more noisy logs

Diffstat:
Mcommon/taler-common/src/log.rs | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/common/taler-common/src/log.rs b/common/taler-common/src/log.rs @@ -128,6 +128,8 @@ pub fn taler_logger(max_level: Option<Level>, verbose: bool) -> impl SubscriberI *metadata.level() <= max_level && (verbose || !(target.starts_with("sqlx") + || target.starts_with("log") + || target.starts_with("axum") || target.contains("hyper_util") || target.starts_with("h2") || target.starts_with("reqwest")