From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8CD42138334 for ; Mon, 14 Oct 2019 20:15:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BEB42E09EC; Mon, 14 Oct 2019 20:15:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A5108E09EC for ; Mon, 14 Oct 2019 20:15:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8171F34BD14 for ; Mon, 14 Oct 2019 20:15:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A76B177D for ; Mon, 14 Oct 2019 20:15:06 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1571084090.f08bb56fb240da5860418b47b726a2954587a85a.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: catalyst/base/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/base/stagebase.py X-VCS-Directories: catalyst/base/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: f08bb56fb240da5860418b47b726a2954587a85a X-VCS-Branch: master Date: Mon, 14 Oct 2019 20:15:06 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e77bb890-790e-41c1-b022-81c432c2ef36 X-Archives-Hash: 18500372c1d34ec5cb50e87605e95014 commit: f08bb56fb240da5860418b47b726a2954587a85a Author: Michael Everitt 2e0cer net> AuthorDate: Mon Oct 14 20:14:18 2019 +0000 Commit: Matt Turner gentoo org> CommitDate: Mon Oct 14 20:14:50 2019 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=f08bb56f Demote warning about missing/failed unmounts to 'notice' Signed-off-by: Michael Everitt 2e0cer.net> Signed-off-by: Matt Turner gentoo.org> catalyst/base/stagebase.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py index 3c274587..c68c278d 100644 --- a/catalyst/base/stagebase.py +++ b/catalyst/base/stagebase.py @@ -1001,11 +1001,11 @@ class StageBase(TargetBase, ClearBase, GenBase): for x in myrevmounts: target = normpath(mypath + self.target_mounts[x]) if not os.path.exists(target): - log.warning('%s does not exist. Skipping', target) + log.notice('%s does not exist. Skipping', target) continue if not ismount(target): - log.warning('%s is not a mount point. Skipping', target) + log.notice('%s is not a mount point. Skipping', target) continue try: