diff options
author | Vijay Bellur <vbellur@redhat.com> | 2020-04-03 12:34:07 -0700 |
---|---|---|
committer | Amar Tumballi <amar@kadalu.io> | 2020-04-06 01:38:39 +0000 |
commit | c61171ea24873b492d0100e376365db59235d321 (patch) | |
tree | 06bab54b4d6538d8d7af09ebe0cc97aefb6e9c25 /xlators | |
parent | 945b0a12b7a47039260330e02b89919c2cefb8d2 (diff) |
mgmt/glusterd: Reduce log level of repetitive log
Noticed that the following message repeats quite a bit in log files when
an external monitoring tool queries gluster for list of volumes
periodically:
"Received get vol req"
As there's not much value in having this log message at log level INFO,
changing the log level to DEBUG to make glusterd.log a bit quieter.
Change-Id: I4e791fc65b9a4f813d295e7b2b6a05f3c0782e69
Updates: #1000
Signed-off-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'xlators')
-rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-handler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-handler.c b/xlators/mgmt/glusterd/src/glusterd-handler.c index 175e73f5ae4..6e6593e7263 100644 --- a/xlators/mgmt/glusterd/src/glusterd-handler.c +++ b/xlators/mgmt/glusterd/src/glusterd-handler.c @@ -1399,7 +1399,7 @@ __glusterd_handle_cli_get_volume(rpcsvc_request_t *req) goto out; } - gf_msg(this->name, GF_LOG_INFO, 0, GD_MSG_GET_VOL_REQ_RCVD, + gf_msg(this->name, GF_LOG_DEBUG, 0, GD_MSG_GET_VOL_REQ_RCVD, "Received get vol req"); if (cli_req.dict.dict_len) { |