diff --git a/main/src/com/google/gridworks/oauth/FreebaseTimeCommonsHttpOAuthConsumer.java b/main/src/com/google/gridworks/oauth/FreebaseTimeCommonsHttpOAuthConsumer.java index e9574c3b8..eaac7a04c 100644 --- a/main/src/com/google/gridworks/oauth/FreebaseTimeCommonsHttpOAuthConsumer.java +++ b/main/src/com/google/gridworks/oauth/FreebaseTimeCommonsHttpOAuthConsumer.java @@ -53,7 +53,7 @@ public class FreebaseTimeCommonsHttpOAuthConsumer extends CommonsHttpOAuthConsum HttpEntity entity = response.getEntity(); if (entity != null) { time = Long.parseLong(EntityUtils.toString(entity),10); - logger.info("Got remote timestamp {}", time); + logger.debug("Got remote timestamp {}", time); } } catch (IOException e) { logger.warn("Error obtaining the synchronized remote timestamp, defaulting to the local one",e);