Yuta HIGUCHI

lowering log level for DeviceClockManager

Change-Id: I8c3d7e62770f187a28b84a6dbf32f03869aff5fc
......@@ -44,7 +44,7 @@ public class DeviceClockManager implements DeviceClockService, DeviceClockProvid
@Override
public Timestamp getTimestamp(DeviceId deviceId) {
MastershipTerm term = deviceMastershipTerms.get(deviceId);
log.info("term info for {} is: {}", deviceId, term);
log.trace("term info for {} is: {}", deviceId, term);
if (term == null) {
throw new IllegalStateException("Requesting timestamp for a deviceId without mastership");
......