aboutsummaryrefslogtreecommitdiff
path: root/src/libfetchers
diff options
context:
space:
mode:
authorQyriad <qyriad@qyriad.me>2024-05-23 22:48:36 -0600
committerQyriad <qyriad@qyriad.me>2024-05-24 15:15:42 -0600
commit8c06b7b431d73431d8872c28d1ec5009cecd5d03 (patch)
tree45b54b124ac339dafc653d2ce164940f77bdfbf1 /src/libfetchers
parentadfc22c3e300b8e0dd7ddfe9543125ca7efc3f98 (diff)
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
Diffstat (limited to 'src/libfetchers')
-rw-r--r--src/libfetchers/fetchers.cc4
1 files changed, 4 insertions, 0 deletions
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<Tree, Input> Input::fetch(ref<Store> store) const
}
auto [storePath, input] = [&]() -> std::pair<StorePath, Input> {
+ // *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) {