Skip to content
Snippets Groups Projects
Commit cb94a04b authored by Piotr Gawron's avatar Piotr Gawron
Browse files

warning changed to debug info

parent 47e1f561
No related branches found
No related tags found
2 merge requests!630WIP: Resolve "The privileges of a new user are not saved in some cases",!494Conversion rest api scaling
Pipeline #7299 passed
......@@ -284,7 +284,7 @@ public class PolylineData implements Serializable {
Point2D last2 = points.get(points.size() - 2);
double oldDist = last.distance(last2);
if (distToTrim < 0 && oldDist <= Configuration.EPSILON) {
logger.warn("Cannot extend empty line");
logger.debug("Cannot extend empty line");
last.setLocation(last2);
} else if (oldDist <= distToTrim) {
last.setLocation(last2);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment