From df0a30e22d00e4b4d27763faa7791edb637f303b Mon Sep 17 00:00:00 2001 From: Stefano Mazzocchi Date: Fri, 10 Sep 2010 21:52:02 +0000 Subject: [PATCH] this is really a debug log git-svn-id: http://google-refine.googlecode.com/svn/trunk@1262 7d457c2a-affb-35e4-300a-418c747d4874 --- .../gridworks/oauth/FreebaseTimeCommonsHttpOAuthConsumer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);