cluster-devel.redhat.com archive mirror
 help / color / mirror / Atom feed
* [Cluster-devel] [PATCH 1/2] fsck.gfs2: Really be quiet in quiet mode
@ 2015-09-11 11:35 Andrew Price
  2015-09-11 11:35 ` [Cluster-devel] [PATCH 2/2] fsck.gfs2: Improve read ahead in pass1_process_bitmap Andrew Price
  0 siblings, 1 reply; 2+ messages in thread
From: Andrew Price @ 2015-09-11 11:35 UTC (permalink / raw)
  To: cluster-devel.redhat.com

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@redhat.com>
---
 gfs2/fsck/initialize.c | 8 ++++----
 1 file 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;
 	}
-- 
2.4.3



^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-09-11 11:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-11 11:35 [Cluster-devel] [PATCH 1/2] fsck.gfs2: Really be quiet in quiet mode Andrew Price
2015-09-11 11:35 ` [Cluster-devel] [PATCH 2/2] fsck.gfs2: Improve read ahead in pass1_process_bitmap Andrew Price

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).