summaryrefslogtreecommitdiffstats
path: root/client-compiler/src/com
diff options
context:
space:
mode:
authorMikael Grankvist <mgrankvi@vaadin.com>2013-01-08 09:07:53 +0200
committerVaadin Code Review <review@vaadin.com>2013-02-28 09:26:27 +0000
commitaa42551d80088583a2063a596dc1099b669ee9cb (patch)
treeac864874fe645606dbbf9ea95793ea0da82b7e6e /client-compiler/src/com
parent51fcdd88c1928c7c2537827e1a224fe171d492a9 (diff)
downloadvaadin-framework-aa42551d80088583a2063a596dc1099b669ee9cb.tar.gz
vaadin-framework-aa42551d80088583a2063a596dc1099b669ee9cb.zip
(#10563) Logging now uses parameters.
Change-Id: Icc807cc2eb391fb0118800383fc93d1e23b04570
Diffstat (limited to 'client-compiler/src/com')
-rw-r--r--client-compiler/src/com/vaadin/server/widgetsetutils/ClassPathExplorer.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/client-compiler/src/com/vaadin/server/widgetsetutils/ClassPathExplorer.java b/client-compiler/src/com/vaadin/server/widgetsetutils/ClassPathExplorer.java
index 90877c47c8..34024f1616 100644
--- a/client-compiler/src/com/vaadin/server/widgetsetutils/ClassPathExplorer.java
+++ b/client-compiler/src/com/vaadin/server/widgetsetutils/ClassPathExplorer.java
@@ -239,7 +239,7 @@ public class ClassPathExplorer {
classpath = classpath.substring(0, classpath.length() - 1);
}
- getLogger().fine("Classpath: " + classpath);
+ getLogger().log(Level.FINE, "Classpath: {0}", classpath);
String[] split = classpath.split(pathSep);
for (int i = 0; i < split.length; i++) {