aboutsummaryrefslogtreecommitdiffstats
path: root/poi/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'poi/src/main')
-rw-r--r--poi/src/main/java/org/apache/poi/ss/format/CellFormat.java2
-rw-r--r--poi/src/main/java/org/apache/poi/ss/format/CellFormatPart.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/poi/src/main/java/org/apache/poi/ss/format/CellFormat.java b/poi/src/main/java/org/apache/poi/ss/format/CellFormat.java
index bf0bc110ca..c95caca273 100644
--- a/poi/src/main/java/org/apache/poi/ss/format/CellFormat.java
+++ b/poi/src/main/java/org/apache/poi/ss/format/CellFormat.java
@@ -192,7 +192,7 @@ public class CellFormat {
parts.add(new CellFormatPart(locale, valueDesc));
} catch (RuntimeException e) {
- LOG.log(Level.WARN, "Invalid format: " + CellFormatter.quote(m.group()), e);
+ LOG.warn("Invalid format: {}", CellFormatter.quote(m.group()), e);
parts.add(null);
}
}
diff --git a/poi/src/main/java/org/apache/poi/ss/format/CellFormatPart.java b/poi/src/main/java/org/apache/poi/ss/format/CellFormatPart.java
index 879884d4a5..8a0232bb4f 100644
--- a/poi/src/main/java/org/apache/poi/ss/format/CellFormatPart.java
+++ b/poi/src/main/java/org/apache/poi/ss/format/CellFormatPart.java
@@ -256,7 +256,7 @@ public class CellFormatPart {
return null;
Color c = NAMED_COLORS.get(cdesc);
if (c == null) {
- LOG.warn("Unknown color: " + quote(cdesc));
+ LOG.warn("Unknown color: {}", quote(cdesc));
}
return c;
}