Skip to content

Commit d399f35

Browse files
committed
attempt to gather more data
1 parent c434c47 commit d399f35

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

libmamba/src/specs/channel.cpp

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
#include <cassert>
99
#include <stdexcept>
1010

11+
#include <iostream>
12+
1113
#include "mamba/fs/filesystem.hpp"
1214
#include "mamba/specs/channel.hpp"
1315
#include "mamba/util/algorithm.hpp"
@@ -109,13 +111,21 @@ namespace mamba::specs
109111

110112
// prepare_mirrors(all_urls);
111113
// m_mirror_urls = std::move(all_urls);
112-
114+
115+
std::cout << "ADDING MIRRORS TO " << this->id() << std::endl;
113116
auto all_mirrors = additional_mirrors;
114117
for (const auto& url : m_mirror_urls)
115118
{
119+
std::cout << " + " << url.str() << std::endl;
116120
all_mirrors.push_back(url);
117121
}
118122

123+
std::cout << "ALL MIRRORS FOR " << this->id() << std::endl;
124+
for (const auto& url : all_mirrors)
125+
{
126+
std::cout << " + " << url.str() << std::endl;
127+
}
128+
119129
prepare_mirrors(all_mirrors);
120130
m_mirror_urls = std::move(all_mirrors);
121131
}

0 commit comments

Comments
 (0)