move to debug lines

This commit is contained in:
Athou
2013-05-22 14:03:54 +02:00
parent a7fd551a76
commit 63b20922cd

View File

@@ -70,7 +70,7 @@ public class PubSubHubbubCallbackREST {
feedPushInfoDAO.update(infos); feedPushInfoDAO.update(infos);
return Response.ok(challenge).build(); return Response.ok(challenge).build();
} else { } 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(); return Response.status(Status.NOT_FOUND).build();
} }
} }
@@ -94,7 +94,7 @@ public class PubSubHubbubCallbackREST {
} }
} }
} catch (Exception e) { } 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(); return Response.ok().build();
} }