From d8e9ad20b004549b8c001ae5624376fce2070cd4 Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Fri, 22 Jan 2021 19:22:40 +0100 Subject: [PATCH] Improve file handler error message Terminating the file handler current process may be either a "push" or "install" command. --- app/src/file_handler.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/file_handler.c b/app/src/file_handler.c index d8881e30..3652ef90 100644 --- a/app/src/file_handler.c +++ b/app/src/file_handler.c @@ -184,7 +184,7 @@ file_handler_stop(struct file_handler *file_handler) { cond_signal(file_handler->event_cond); if (file_handler->current_process != PROCESS_NONE) { if (!process_terminate(file_handler->current_process)) { - LOGW("Could not terminate install process"); + LOGW("Could not terminate push/install process"); } } mutex_unlock(file_handler->mutex);