lowering log level for DeviceClockManager

Change-Id: I8c3d7e62770f187a28b84a6dbf32f03869aff5fc
diff --git a/core/store/dist/src/main/java/org/onlab/onos/store/device/impl/DeviceClockManager.java b/core/store/dist/src/main/java/org/onlab/onos/store/device/impl/DeviceClockManager.java
index 73ba735..92af514 100644
--- a/core/store/dist/src/main/java/org/onlab/onos/store/device/impl/DeviceClockManager.java
+++ b/core/store/dist/src/main/java/org/onlab/onos/store/device/impl/DeviceClockManager.java
@@ -44,7 +44,7 @@
     @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");