Browse Source

Reduce the verbosity on plugin terminating error

pull/2411/head
Max Lv 5 years ago
parent
commit
a161265786
1 changed files with 1 additions and 1 deletions
  1. 2
      src/plugin.c

2
src/plugin.c

@ -333,7 +333,7 @@ stop_plugin()
if (sub != NULL) {
cork_subprocess_abort(sub);
if (cork_subprocess_wait(sub) == -1) {
LOGE("error on terminating the plugin.");
LOGI("error on terminating the plugin.");
}
cork_subprocess_free(sub);
}

Loading…
Cancel
Save