diff options
Diffstat (limited to 'xlators/performance/io-threads/src/io-threads.c')
| -rw-r--r-- | xlators/performance/io-threads/src/io-threads.c | 10 | 
1 files changed, 6 insertions, 4 deletions
diff --git a/xlators/performance/io-threads/src/io-threads.c b/xlators/performance/io-threads/src/io-threads.c index 984434d4d51..2a6fc57de14 100644 --- a/xlators/performance/io-threads/src/io-threads.c +++ b/xlators/performance/io-threads/src/io-threads.c @@ -2142,15 +2142,17 @@ reconfigure ( xlator_t *this, dict_t *options)                  if (thread_count < IOT_MIN_THREADS) {                          gf_log ("io-threads", GF_LOG_WARNING, -                                "Number of threads opted is less then min rest" -                                "oring it to previous value",conf->max_count); +                                "Number of threads opted (%d) is less then " +                                "min (%d). Restoring it to previous value (%d)", +                                thread_count, IOT_MIN_THREADS, conf->max_count);  			goto out;                  }                  if (thread_count > IOT_MAX_THREADS) {                          gf_log ("io-threads", GF_LOG_WARNING, -                                "Number of threads opted is greater than max " -                                "restoring it to previous value",conf->max_count); +                                "Number of threads opted (%d) is greater than " +                                "max (%d). Restoring it to previous value (%d)", +                                thread_count, IOT_MAX_THREADS, conf->max_count);  			goto out;                  }  | 
