summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gemato/cli.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/gemato/cli.py b/gemato/cli.py
index 14b153a..afbddda 100644
--- a/gemato/cli.py
+++ b/gemato/cli.py
@@ -1,6 +1,6 @@
# gemato: CLI routines
# vim:fileencoding=utf-8
-# (c) 2017-2020 Michał Górny
+# (c) 2017-2022 Michał Górny
# Licensed under the terms of 2-clause BSD license
from __future__ import print_function
@@ -236,6 +236,8 @@ class VerifyCommand(BaseManifestLoaderMixin, VerifyingOpenPGPMixin,
logging.error(f'Top-level Manifest not found in {p}')
return 1
+ logging.info(f"Using top-level Manifest: {tlm}")
+
start = timeit.default_timer()
m = ManifestRecursiveLoader(tlm, **self.init_kwargs)
if self.require_signed_manifest and not m.openpgp_signed: