warn instead of error

This commit is contained in:
Hocuri
2020-06-11 15:41:22 +02:00
parent ffb6a84b1f
commit 8ebce0c861

View File

@@ -1280,7 +1280,7 @@ pub async fn set_msg_failed(context: &Context, msg_id: MsgId, error: Option<impl
msg_id,
}),
Err(e) => {
error!(context, "{:?}", e);
warn!(context, "{:?}", e);
}
}
}