From dd216deb8a9e281ec41867c354efb0067cde4785 Mon Sep 17 00:00:00 2001 From: vinayak hegde Date: Thu, 19 Nov 2009 01:39:39 +0000 Subject: debug/error-gen: Correct log messages in init function. Signed-off-by: Vinayak Hegde Signed-off-by: Anand V. Avati BUG: 291 (feature enhancement of error-gen translator) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=291 --- xlators/debug/error-gen/src/error-gen.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'xlators/debug') diff --git a/xlators/debug/error-gen/src/error-gen.c b/xlators/debug/error-gen/src/error-gen.c index c125a870526..8d97a46f16f 100644 --- a/xlators/debug/error-gen/src/error-gen.c +++ b/xlators/debug/error-gen/src/error-gen.c @@ -2339,14 +2339,14 @@ init (xlator_t *this) pvt->enable[i] = 0; if (!error_no) { gf_log (this->name, GF_LOG_DEBUG, - "Warning error-no not specified."); + "error-no not specified."); } else { pvt->error_no = data_to_str (error_no); } if (!failure_percent) { gf_log (this->name, GF_LOG_DEBUG, - "Warning, failure percent not specified."); + "failure percent not specified."); pvt->failure_iter_no = 100/GF_FAILURE_DEFAULT; } else { failure_percent_int = data_to_int32 (failure_percent); @@ -2358,7 +2358,7 @@ init (xlator_t *this) if (!enable) { gf_log (this->name, GF_LOG_WARNING, - "Warning, all fops are enabled."); + "All fops are enabled."); for (i = 0; i < NO_OF_FOPS; i++) pvt->enable[i] = 1; } else { -- cgit