diff options
Diffstat (limited to 'cli/src/cli-cmd-volume.c')
| -rw-r--r-- | cli/src/cli-cmd-volume.c | 37 | 
1 files changed, 37 insertions, 0 deletions
diff --git a/cli/src/cli-cmd-volume.c b/cli/src/cli-cmd-volume.c index 673202440fc..7ca9ed4bb2f 100644 --- a/cli/src/cli-cmd-volume.c +++ b/cli/src/cli-cmd-volume.c @@ -1171,6 +1171,39 @@ out:          return ret;  } +int +cli_cmd_log_level_cbk (struct cli_state *state, struct cli_cmd_word *word, +                       const char **words, int wordcount) +{ +        int                   ret         = -1; +        rpc_clnt_procedure_t *proc        = NULL; +        call_frame_t         *frame       = NULL; +        dict_t               *dict        = NULL; +        int                   parse_error = 0; + +        if (wordcount != 6) { +          cli_usage_out (word->pattern); +          parse_error = 1; +          goto out; +        } + +        proc = &cli_rpc_prog->proctable[GLUSTER_CLI_LOG_LEVEL]; + +        frame = create_frame (THIS, THIS->ctx->pool); +        if (!frame) +          goto out; + +        ret = cli_cmd_log_level_parse (words, wordcount, &dict); +        if (ret) +          goto out; + +        if (proc->fn) +          ret = proc->fn (frame, THIS, dict); + + out: +        return ret; +} +  struct cli_cmd volume_cmds[] = {          { "volume info [all|<VOLNAME>]",            cli_cmd_volume_info_cbk, @@ -1265,6 +1298,10 @@ struct cli_cmd volume_cmds[] = {             cli_cmd_volume_top_cbk,             "volume top operations"}, +        {"volume log level <VOLNAME> <XLATOR[*]> <LOGLEVEL>", +         cli_cmd_log_level_cbk, +         "log level for translator"}, +          { NULL, NULL, NULL }  };  | 
