Skip to content

Commit

Permalink
remove debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
b-camacho committed Nov 18, 2024
1 parent b548e5c commit f67b63f
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/libfetchers/git.cc
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,6 @@ struct GitInputScheme : InputScheme

bool exportIgnore = getExportIgnoreAttr(input);
bool smudgeLfs = getLfsAttr(input);
std::cerr << "smudgeLfs: " << smudgeLfs << std::endl;
auto accessor = repo->getAccessor(rev, exportIgnore, smudgeLfs);

accessor->setPathDisplay("«" + input.to_string() + "»");
Expand Down Expand Up @@ -805,9 +804,7 @@ struct GitInputScheme : InputScheme
{
if (auto rev = input.getRev())
{
const auto s = rev->gitRev() + (getSubmodulesAttr(input) ? ";s" : "") + (getExportIgnoreAttr(input) ? ";e" : "") + (getLfsAttr(input) ? ";l" : "");
std::cerr << "getFingerprint: " << s << std::endl;
return s;
return rev->gitRev() + (getSubmodulesAttr(input) ? ";s" : "") + (getExportIgnoreAttr(input) ? ";e" : "") + (getLfsAttr(input) ? ";l" : "");
}
else
return std::nullopt;
Expand Down

0 comments on commit f67b63f

Please sign in to comment.