Skip to content

Commit

Permalink
Print more ES response options
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdickmeiss committed May 29, 2018
1 parent fda4f06 commit e76e816
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions zoom/zoomsh.c
Expand Up @@ -478,6 +478,18 @@ static int cmd_ext(struct zoom_sh *sh, const char **args)
v = ZOOM_package_option_get(p[i], "xmlUpdateDoc");
if (v)
printf("xmlUpdateDoc: %s\n", v);
v = ZOOM_package_option_get(p[i], "operationStatus");
if (v)
printf("operationStatus: %s\n", v);
v = ZOOM_package_option_get(p[i], "taskStatus");
if (v)
printf("taskStatus: %s\n", v);
v = ZOOM_package_option_get(p[i], "esError");
if (v)
printf("esError: %s\n", v);
v = ZOOM_package_option_get(p[i], "esAddinfo");
if (v)
printf("esAddinfo: %s\n", v);
}
ZOOM_package_destroy(p[i]);
i++;
Expand Down

0 comments on commit e76e816

Please sign in to comment.