taler-rust

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

commit 08e85369319854b88c7b73153edfdb4afea23aa4
parent b6bbec29bc0ff1b5361cc3a9347efaeb31f2f176
Author: Antoine A <>
Date:   Sun, 15 Feb 2026 19:07:29 +0100

common: filter more logs

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

diff --git a/common/taler-common/src/log.rs b/common/taler-common/src/log.rs @@ -1,6 +1,6 @@ /* This file is part of TALER - Copyright (C) 2025 Taler Systems SA + Copyright (C) 2025, 2026 Taler Systems SA TALER is free software; you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software @@ -71,7 +71,9 @@ pub fn taler_logger(max_level: Option<Level>) -> impl SubscriberInitExt { let target = metadata.target(); *metadata.level() <= max_level && !(target.starts_with("sqlx") - || target.starts_with("hyper_util") - || target.starts_with("reqwest")) + || target.contains("hyper_util") + || target.starts_with("reqwest") + || target.starts_with("rustls") + || target.starts_with("hyper_rustls")) })) }