From 63b20922cde942586bf428959e2201bf7b2b29b5 Mon Sep 17 00:00:00 2001 From: Athou Date: Wed, 22 May 2013 14:03:54 +0200 Subject: [PATCH] move to debug lines --- .../frontend/rest/resources/PubSubHubbubCallbackREST.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/commafeed/frontend/rest/resources/PubSubHubbubCallbackREST.java b/src/main/java/com/commafeed/frontend/rest/resources/PubSubHubbubCallbackREST.java index 825a7756..fb26ea53 100644 --- a/src/main/java/com/commafeed/frontend/rest/resources/PubSubHubbubCallbackREST.java +++ b/src/main/java/com/commafeed/frontend/rest/resources/PubSubHubbubCallbackREST.java @@ -70,7 +70,7 @@ public class PubSubHubbubCallbackREST { feedPushInfoDAO.update(infos); return Response.ok(challenge).build(); } else { - log.info("rejecting callback: no push info for {}", topic); + log.debug("rejecting callback: no push info for {}", topic); return Response.status(Status.NOT_FOUND).build(); } } @@ -94,7 +94,7 @@ public class PubSubHubbubCallbackREST { } } } catch (Exception e) { - log.error("Could not parse pubsub callback: " + e.getMessage(), e); + log.debug("Could not parse pubsub callback: " + e.getMessage(), e); } return Response.ok().build(); }