From f67b63fa3aceeceeb2c338c057bb03827e8cbe76 Mon Sep 17 00:00:00 2001 From: Brian Camacho Date: Mon, 18 Nov 2024 01:21:14 -0500 Subject: [PATCH] remove debug prints --- src/libfetchers/git.cc | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/libfetchers/git.cc b/src/libfetchers/git.cc index d39d6840d..d51637b25 100644 --- a/src/libfetchers/git.cc +++ b/src/libfetchers/git.cc @@ -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() + "»"); @@ -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;