Skip to content

Commit bcf2336

Browse files
committed
Adjust log-level of some debug output
1 parent 8078633 commit bcf2336

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

calm/package.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1777,7 +1777,7 @@ def stale_packages(packages, vault_requests):
17771777
#
17781778
# (set above using same critera as for install package
17791779
# e.g. we have an excess number of packages)
1780-
logging.warning("considering other packages from source package '%s' version '%s'" % (es, v))
1780+
logging.debug("considering other packages from source package '%s' version '%s'" % (es, v))
17811781
if getattr(es_po.tar(v), 'fresh', Freshness.stale) != Freshness.fresh:
17821782
# ... additionally mark anything with no other-source
17831783
# rdepends
@@ -1786,7 +1786,7 @@ def stale_packages(packages, vault_requests):
17861786
if not any(packages[p].srcpackage(v) != es for p in packages[opn].rdepends):
17871787
mark_package_fresh(packages, opn, v, mark)
17881788
else:
1789-
logging.warning("package '%s' version '%s' retained due to being used" % (opn, v))
1789+
logging.debug("package '%s' version '%s' retained due to being used" % (opn, v))
17901790

17911791
# mark source packages as fresh if any install package which uses it is fresh
17921792
for po in packages.values():

0 commit comments

Comments
 (0)