FlowStore: Include exception in warning message
Change-Id: I1ff7797a3c21f5c62e2047fd4959711a2efe75c4
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -413,7 +413,7 @@ public class NewDistributedFlowRuleStore | ... | @@ -413,7 +413,7 @@ public class NewDistributedFlowRuleStore |
| 413 | master) | 413 | master) |
| 414 | .whenComplete((result, error) -> { | 414 | .whenComplete((result, error) -> { |
| 415 | if (error != null) { | 415 | if (error != null) { |
| 416 | - log.warn("Failed to storeBatch: {} to {}", operation, master); | 416 | + log.warn("Failed to storeBatch: {} to {}", operation, master, error); |
| 417 | 417 | ||
| 418 | Set<FlowRule> allFailures = operation.getOperations() | 418 | Set<FlowRule> allFailures = operation.getOperations() |
| 419 | .stream() | 419 | .stream() | ... | ... |
-
Please register or login to post a comment