File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change 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 }
You can’t perform that action at this time.
0 commit comments