Yuta HIGUCHI

lower anti-entropy send error message log level

Change-Id: I49c6aeafe11d8b9b6d7dfe1e1834189660a40864
...@@ -1136,7 +1136,7 @@ public class GossipDeviceStore ...@@ -1136,7 +1136,7 @@ public class GossipDeviceStore
1136 try { 1136 try {
1137 unicastMessage(peer, DEVICE_ADVERTISE, ad); 1137 unicastMessage(peer, DEVICE_ADVERTISE, ad);
1138 } catch (IOException e) { 1138 } catch (IOException e) {
1139 - log.error("Failed to send anti-entropy advertisement", e); 1139 + log.debug("Failed to send anti-entropy advertisement to {}", peer);
1140 return; 1140 return;
1141 } 1141 }
1142 } catch (Exception e) { 1142 } catch (Exception e) {
......
...@@ -534,7 +534,7 @@ public class GossipHostStore ...@@ -534,7 +534,7 @@ public class GossipHostStore
534 try { 534 try {
535 unicastMessage(peer, GossipHostStoreMessageSubjects.HOST_ANTI_ENTROPY_ADVERTISEMENT, ad); 535 unicastMessage(peer, GossipHostStoreMessageSubjects.HOST_ANTI_ENTROPY_ADVERTISEMENT, ad);
536 } catch (IOException e) { 536 } catch (IOException e) {
537 - log.debug("Failed to send anti-entropy advertisement", e); 537 + log.debug("Failed to send anti-entropy advertisement to {}", peer);
538 return; 538 return;
539 } 539 }
540 } catch (Exception e) { 540 } catch (Exception e) {
......