From 8c06b7b431d73431d8872c28d1ec5009cecd5d03 Mon Sep 17 00:00:00 2001 From: Qyriad Date: Thu, 23 May 2024 22:48:36 -0600 Subject: libfetchers: log fetches by URL just before they happen Addresses but does not close #305, as we still need an indicator for frozen fetches. Change-Id: Iba34ad42dc1c8772f7da249b90fe794b041bbf73 --- src/libfetchers/fetchers.cc | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/libfetchers') diff --git a/src/libfetchers/fetchers.cc b/src/libfetchers/fetchers.cc index dc8df2217..210912cb6 100644 --- a/src/libfetchers/fetchers.cc +++ b/src/libfetchers/fetchers.cc @@ -133,6 +133,10 @@ std::pair Input::fetch(ref store) const } auto [storePath, input] = [&]() -> std::pair { + // *sighs*, we print the base URL, rather than the full URL because the Nixpkgs + // fileset lib tests assume that fetching shallow and non-shallow prints exactly the + // same stderr... + printInfo("fetching %s input '%s'", this->getType(), this->toURL().base); try { return scheme->fetch(store, *this); } catch (Error & e) { -- cgit v1.2.3