diff --git a/qapi/qmp-dispatch.c b/qapi/qmp-dispatch.c index 392ddb097c0fd50954453e6189988bbcb15ef443..e9ea5a70d4870d9347090a25adbbae3ce228a1f4 100644 --- a/qapi/qmp-dispatch.c +++ b/qapi/qmp-dispatch.c @@ -222,20 +222,6 @@ QDict *qmp_dispatch(const QmpCommandList *cmds, QObject *request, assert(!(oob && qemu_in_coroutine())); assert(monitor_cur() == NULL); - - json = qobject_to_json(QOBJECT(args)); - if (json) { - if ((strcmp(command, "query-block-jobs") != 0) - && (strcmp(command, "query-migrate") != 0) - && (strcmp(command, "query-blockstats") != 0) - && (strcmp(command, "query-balloon") != 0) - && (strcmp(command, "set_password") != 0)) { - qemu_log("qmp_cmd_name: %s, arguments: %s\n", - command, json->str); - } - g_string_free(json, true); - } - if (!!(cmd->options & QCO_COROUTINE) == qemu_in_coroutine()) { monitor_set_cur(qemu_coroutine_self(), cur_mon); cmd->fn(args, &ret, &err);