diff options
author | Mikael Grankvist <mgrankvi@vaadin.com> | 2013-01-08 09:07:53 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2013-02-28 09:26:27 +0000 |
commit | aa42551d80088583a2063a596dc1099b669ee9cb (patch) | |
tree | ac864874fe645606dbbf9ea95793ea0da82b7e6e /client-compiler/src/com | |
parent | 51fcdd88c1928c7c2537827e1a224fe171d492a9 (diff) | |
download | vaadin-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.java | 2 |
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++) { |