From fe75c0f10cfb98a38e136e160af2a626baf9c315 Mon Sep 17 00:00:00 2001 From: Peter Lieven Date: Mon, 20 Apr 2015 14:16:52 +0200 Subject: [PATCH] pdu: remove redundant logout message the message is redundant since 1bb06b33 Signed-off-by: Peter Lieven --- lib/pdu.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/pdu.c b/lib/pdu.c index 6a8ba05..775587f 100644 --- a/lib/pdu.c +++ b/lib/pdu.c @@ -346,8 +346,6 @@ static void iscsi_reconnect_after_logout(struct iscsi_context *iscsi, int status { if (status) { ISCSI_LOG(iscsi, 1, "logout failed: %s", iscsi_get_error(iscsi)); - } else { - ISCSI_LOG(iscsi, 2, "logout was successful"); } iscsi->pending_reconnect = 1; } @@ -445,7 +443,6 @@ iscsi_process_pdu(struct iscsi_context *iscsi, struct iscsi_in_pdu *in) * Bug_73732 - I/O errors during volume move operation (still present in 7.0.9) */ if (getenv("LIBISCSI_DROP_CONN_ON_ASYNC_EVENT1") != NULL) { - ISCSI_LOG(iscsi, 2, "dropping connection to fix errors with broken DELL Equallogic firmware 7.x"); return -1; }