From 597f43d228dc3cee05e4004688293721a08d25bd Mon Sep 17 00:00:00 2001 From: Michał Górny Date: Tue, 13 Sep 2022 17:49:53 +0200 Subject: cli: Print top-level Manifest path MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes: https://github.com/projg2/gemato/issues/20 Signed-off-by: Michał Górny --- gemato/cli.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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: -- cgit v1.2.3