Skip to content
Snippets Groups Projects
Commit 81018cec authored by Robert Butora's avatar Robert Butora
Browse files

fixes buf in SearchServlet.init (synptom: CONFIG from init() was not printed)

parent 55d0c9cb
Branches
Tags
No related merge requests found
......@@ -20,7 +20,7 @@ import vo.error.*;
public class SearchServlet extends javax.servlet.http.HttpServlet
{
private static final Logger LOGGER = Logger.getLogger("PSearch");
private static final Logger LOGGER = Logger.getLogger(SearchServlet.class.getName());
private static final SearchSettings settings = SearchSettings.getInstance("search.properties");
final String RESPONSE_ENCODING = "utf-8";
......@@ -31,8 +31,6 @@ public class SearchServlet extends javax.servlet.http.HttpServlet
public void init() throws ServletException
{
super.init();
LOGGER.config("DB: " + settings.dbConn.toString());
}
......
......@@ -25,7 +25,7 @@ import vo.error.*;
public class FormatResponseFilter implements Filter
{
private static final Logger LOGGER = Logger.getLogger("FormatResponseFilter");
private static final Logger LOGGER = Logger.getLogger(FormatResponseFilter.class.getName());
private static final FormatResponseSettings settings = FormatResponseSettings.getInstance(
"formatresponsefilter.properties");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment