lowering log level for DeviceClockManager
Change-Id: I8c3d7e62770f187a28b84a6dbf32f03869aff5fc
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -44,7 +44,7 @@ public class DeviceClockManager implements DeviceClockService, DeviceClockProvid | ... | @@ -44,7 +44,7 @@ public class DeviceClockManager implements DeviceClockService, DeviceClockProvid |
44 | @Override | 44 | @Override |
45 | public Timestamp getTimestamp(DeviceId deviceId) { | 45 | public Timestamp getTimestamp(DeviceId deviceId) { |
46 | MastershipTerm term = deviceMastershipTerms.get(deviceId); | 46 | MastershipTerm term = deviceMastershipTerms.get(deviceId); |
47 | - log.info("term info for {} is: {}", deviceId, term); | 47 | + log.trace("term info for {} is: {}", deviceId, term); |
48 | 48 | ||
49 | if (term == null) { | 49 | if (term == null) { |
50 | throw new IllegalStateException("Requesting timestamp for a deviceId without mastership"); | 50 | throw new IllegalStateException("Requesting timestamp for a deviceId without mastership"); | ... | ... |
-
Please register or login to post a comment