Skip to content
Snippets Groups Projects
Commit eac110ee authored by Robert Goldmann's avatar Robert Goldmann
Browse files

Fixed #238 - only log unauthorized connections is server

parent 57d03ec2
No related branches found
No related tags found
No related merge requests found
...@@ -133,10 +133,6 @@ public class SparkServer ...@@ -133,10 +133,6 @@ public class SparkServer
Logger.debug("Unauthorized request from " + request.ip()); Logger.debug("Unauthorized request from " + request.ip());
halt(401, "Unauthorized"); halt(401, "Unauthorized");
} }
else
{
Logger.debug("Authorized request from " + request.ip());
}
DatabaseHandler handler = Utils.getDatabaseHandler(settings); DatabaseHandler handler = Utils.getDatabaseHandler(settings);
RepeatingPaymentUpdater paymentUpdater = new RepeatingPaymentUpdater(handler); RepeatingPaymentUpdater paymentUpdater = new RepeatingPaymentUpdater(handler);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment