import: downgrade log message to LOG_WARNING, because we ignore the failure

This commit is contained in:
Lennart Poettering 2018-10-10 16:47:13 +02:00
parent a0ee3d93bb
commit 5b6299ee8b
1 changed files with 1 additions and 1 deletions

View File

@ -196,7 +196,7 @@ static void transfer_send_log_line(Transfer *t, const char *line) {
priority,
line);
if (r < 0)
log_error_errno(r, "Cannot emit message: %m");
log_warning_errno(r, "Cannot emit log message signal, ignoring: %m");
}
static void transfer_send_logs(Transfer *t, bool flush) {