aboutsummaryrefslogtreecommitdiff
path: root/bpkg
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-08-09 18:55:57 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-08-09 18:55:57 +0300
commit0305f819cfa249df47ba5e78d87a4a501a58da70 (patch)
tree4c71749d38f30912da94620bc68e25de9ec70ae7 /bpkg
parent43627fb7ede30a0f8f42657222b803c83de50b6f (diff)
Print information messages instead of warnings prior to git repository deep/dumb fetching
Diffstat (limited to 'bpkg')
-rw-r--r--bpkg/fetch-git.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/bpkg/fetch-git.cxx b/bpkg/fetch-git.cxx
index 43758b3..28557f8 100644
--- a/bpkg/fetch-git.cxx
+++ b/bpkg/fetch-git.cxx
@@ -1540,12 +1540,12 @@ namespace bpkg
dr << " in '" << dir.posix_string () << "'"; // Is used by tests.
}
- // Print warnings prior to the deep fetching.
+ // Print information messages prior to the deep fetching.
//
if (fetch_deep)
{
{
- diag_record dr (warn);
+ diag_record dr (info);
dr << "fetching whole " << (fetch_repo ? "repository" : "reference")
<< " history";
@@ -1560,7 +1560,7 @@ namespace bpkg
}
if (caps () == capabilities::dumb)
- warn << "no progress will be shown (dumb HTTP)";
+ info << "no progress will be shown (dumb HTTP)";
}
}