From a16126578682caaf8c2187d4352911868927b269 Mon Sep 17 00:00:00 2001 From: Max Lv Date: Fri, 21 Jun 2019 13:35:02 +0800 Subject: [PATCH] Reduce the verbosity on plugin terminating error --- src/plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugin.c b/src/plugin.c index a5eb315d..32c5bb1c 100644 --- a/src/plugin.c +++ b/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); }