summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMatthias Beyer <matthias.beyer@atos.net>2021-02-01 11:12:25 +0100
committerMatthias Beyer <mail@beyermatthias.de>2021-02-02 09:47:34 +0100
commitfe14813d7092b91e5ac586e601c20443959c59e6 (patch)
treed31b5a83b7c47b6e42503e7315221ddedcaa0e18 /src
parent5a79b2ea5a7648741042fc118be7d98dffbd4b24 (diff)
Add trace output which packages will be verified
Signed-off-by: Matthias Beyer <matthias.beyer@atos.net>
Diffstat (limited to 'src')
-rw-r--r--src/commands/source.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/commands/source.rs b/src/commands/source.rs
index 404d9f7..f3f65a4 100644
--- a/src/commands/source.rs
+++ b/src/commands/source.rs
@@ -72,7 +72,8 @@ pub async fn verify(
.as_ref()
.map(|v| v.matches(p.version()))
.unwrap_or(true)
- });
+ })
+ .inspect(|p| trace!("Found for verification: {} {}", p.name(), p.version()));
verify_impl(packages, &sc, &progressbars).await
}