use lombok slf4j annotation

This commit is contained in:
Athou
2013-08-11 11:45:32 +02:00
parent 174664619b
commit 0d730128f7
26 changed files with 62 additions and 106 deletions

View File

@@ -12,10 +12,10 @@ import javax.annotation.PreDestroy;
import javax.enterprise.context.ApplicationScoped;
import javax.inject.Inject;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.codec.digest.DigestUtils;
import org.apache.commons.lang.time.DateUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.commafeed.backend.MetricsBean;
import com.commafeed.backend.dao.FeedDAO;
@@ -31,10 +31,9 @@ import com.google.common.collect.Queues;
*
*/
@ApplicationScoped
@Slf4j
public class FeedRefreshTaskGiver {
protected static final Logger log = LoggerFactory.getLogger(FeedRefreshTaskGiver.class);
@Inject
FeedDAO feedDAO;