gfs2-utils: master - fsck.gfs2: Really be quiet in quiet mode

Andrew Price andyp at fedoraproject.org
Tue Sep 22 14:45:56 UTC 2015


Gitweb:        http://git.fedorahosted.org/git/?p=gfs2-utils.git;a=commitdiff;h=a509989bf4879d5de237fd8a9ac19f84a41691b0
Commit:        a509989bf4879d5de237fd8a9ac19f84a41691b0
Parent:        a58b422962155a795abef4323649dea68dafd829
Author:        Andrew Price <anprice at redhat.com>
AuthorDate:    Wed Sep 9 08:08:37 2015 -0500
Committer:     Andrew Price <anprice at redhat.com>
CommitterDate: Fri Sep 11 11:47:55 2015 +0100

fsck.gfs2: Really be quiet in quiet mode

Using the -q option leaves some informational messages still printed as
they're using log_warn. Switch them to log_notice so that they're not
printed when -q is used.

Signed-off-by: Andrew Price <anprice at redhat.com>
---
 gfs2/fsck/initialize.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/gfs2/fsck/initialize.c b/gfs2/fsck/initialize.c
index bb9755c..4a31927 100644
--- a/gfs2/fsck/initialize.c
+++ b/gfs2/fsck/initialize.c
@@ -629,15 +629,15 @@ static int fetch_rgrps(struct gfs2_sbd *sdp)
 	/*******************************************************************
 	 ********  Validate and read in resource group information  ********
 	 *******************************************************************/
-	log_warn( _("Validating Resource Group index.\n"));
+	log_notice(_("Validating resource group index.\n"));
 	for (trust_lvl = blind_faith; trust_lvl <= indignation; trust_lvl++) {
 		int ret = 0;
 
-		log_warn( _("Level %d rgrp check: %s.\n"), trust_lvl + 1,
+		log_notice(_("Level %d resource group check: %s.\n"), trust_lvl + 1,
 			  level_desc[trust_lvl]);
 		if ((rg_repair(sdp, trust_lvl, &rgcount, &sane) == 0) &&
 		    ((ret = ri_update(sdp, 0, &rgcount, &sane)) == 0)) {
-			log_warn( _("(level %d passed)\n"), trust_lvl + 1);
+			log_notice(_("(level %d passed)\n"), trust_lvl + 1);
 			break;
 		} else {
 			if (ret < 0)
@@ -654,7 +654,7 @@ static int fetch_rgrps(struct gfs2_sbd *sdp)
 			break;
 	}
 	if (trust_lvl > indignation) {
-		log_err( _("Resource Group recovery impossible; I can't fix "
+		log_err( _("Resource group recovery impossible; I can't fix "
 			   "this file system.\n"));
 		return -1;
 	}


More information about the cluster-commits mailing list