[calm - Cygwin server-side packaging maintenance script] branch master, updated. 20230209-101-gbcf2336
Jon Turney via Cygwin-apps-cvs <[email protected]> Tue, 23 Apr 2024 19:39:41 +0000 (GMT)
| Newsgroups | gmane.os.cygwin.cvs.apps |
|---|---|
| Message-ID | <[email protected]> |
https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/calm.git;h=bcf23367a604027b91a66f4cc3310086afc67740 commit bcf23367a604027b91a66f4cc3310086afc67740 Author: Jon Turney <[email protected]> Date: Tue Apr 23 20:16:08 2024 +0100 Adjust log-level of some debug output Diff: --- calm/package.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/calm/package.py b/calm/package.py index 2205376..64587e5 100755 --- a/calm/package.py +++ b/calm/package.py @@ -1777,7 +1777,7 @@ def stale_packages(packages, vault_requests): # # (set above using same critera as for install package # e.g. we have an excess number of packages) - logging.warning("considering other packages from source package '%s' version '%s'" % (es, v)) + logging.debug("considering other packages from source package '%s' version '%s'" % (es, v)) if getattr(es_po.tar(v), 'fresh', Freshness.stale) != Freshness.fresh: # ... additionally mark anything with no other-source # rdepends @@ -1786,7 +1786,7 @@ def stale_packages(packages, vault_requests): if not any(packages[p].srcpackage(v) != es for p in packages[opn].rdepends): mark_package_fresh(packages, opn, v, mark) else: - logging.warning("package '%s' version '%s' retained due to being used" % (opn, v)) + logging.debug("package '%s' version '%s' retained due to being used" % (opn, v)) # mark source packages as fresh if any install package which uses it is fresh for po in packages.values():