Committed by
Gerrit Code Review
Eliminating dump of a stack trace for an expected error.
Change-Id: Iadf72f33dcb9cf1b44ae78ade879ea80899bf355
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -384,7 +384,7 @@ public class GossipApplicationStore extends ApplicationArchive | ... | @@ -384,7 +384,7 @@ public class GossipApplicationStore extends ApplicationArchive |
384 | latch.countDown(); | 384 | latch.countDown(); |
385 | } else if (error != null) { | 385 | } else if (error != null) { |
386 | log.warn("Unable to fetch bits for application {} from node {}", | 386 | log.warn("Unable to fetch bits for application {} from node {}", |
387 | - app.id().name(), node.id(), error); | 387 | + app.id().name(), node.id()); |
388 | } | 388 | } |
389 | }, executor); | 389 | }, executor); |
390 | } | 390 | } | ... | ... |
-
Please register or login to post a comment