removed useless logger in FeedIdNotFoundexception

git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/portal/social-networking-library@165171 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Massimiliano Assante 2018-03-16 10:14:01 +00:00
parent 3e328e71e5
commit 43c4ee0717
1 changed files with 1 additions and 5 deletions

View File

@ -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);
}
}