diff --git a/src/main/java/org/gcube/portal/databook/shared/ex/FeedIDNotFoundException.java b/src/main/java/org/gcube/portal/databook/shared/ex/FeedIDNotFoundException.java index d298574..52c2dce 100644 --- a/src/main/java/org/gcube/portal/databook/shared/ex/FeedIDNotFoundException.java +++ b/src/main/java/org/gcube/portal/databook/shared/ex/FeedIDNotFoundException.java @@ -1,13 +1,9 @@ package org.gcube.portal.databook.shared.ex; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - @SuppressWarnings("serial") public class FeedIDNotFoundException extends Exception { - private static final Logger _log = LoggerFactory.getLogger(FeedIDNotFoundException.class); public FeedIDNotFoundException(String message, String postId) { - _log.info("The Post having id: " + postId + " is not present in the database: " + message); + super("The Post having id: " + postId + " is not present in the database: " + message); } } \ No newline at end of file