log timestamping error on Link remove
Change-Id: Ia333fb4f9c4af3642482f626e5660e0339d13995
Showing
1 changed file
with
1 additions
and
0 deletions
... | @@ -377,6 +377,7 @@ public class GossipLinkStore | ... | @@ -377,6 +377,7 @@ public class GossipLinkStore |
377 | try { | 377 | try { |
378 | timestamp = deviceClockService.getTimestamp(dstDeviceId); | 378 | timestamp = deviceClockService.getTimestamp(dstDeviceId); |
379 | } catch (IllegalStateException e) { | 379 | } catch (IllegalStateException e) { |
380 | + log.warn("Failed to remove link {}, was not the master", key); | ||
380 | //there are times when this is called before mastership | 381 | //there are times when this is called before mastership |
381 | // handoff correctly completes. | 382 | // handoff correctly completes. |
382 | return null; | 383 | return null; | ... | ... |
-
Please register or login to post a comment