Commit 588eff19 authored by Matthias Betz's avatar Matthias Betz
Browse files

convert logging String.format to logging equivalent

2 merge requests!28Version 3.17.0 Release,!24cleanup code
Pipeline #10972 passed with stage
in 1 minute and 15 seconds
Showing with 1 addition and 1 deletion
+1 -1
......@@ -59,7 +59,7 @@ public class Citygml3GeometryMapper extends GeometryWalker {
public void visit(Polygon polygon) {
parsePolygon(polygon.getId(), polygon.getExterior(), polygon.getInterior());
if (polygon.getExterior() == null) {
logger.warn(String.format("No exterior: %s", polygon.getId()));
logger.warn("No exterior: {}", polygon.getId());
}
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment