diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-08-28 08:48:09 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-08-28 08:48:09 +0300 |
commit | 567e1d861f38913941f0e06fc9c7e7eaee76bd78 (patch) | |
tree | aa6d5115a30b9fa2da886c5729103248fd6588eb /client | |
parent | ea1c43b087b92bba0a5e97e803feb9671996aebd (diff) | |
download | vaadin-framework-567e1d861f38913941f0e06fc9c7e7eaee76bd78.tar.gz vaadin-framework-567e1d861f38913941f0e06fc9c7e7eaee76bd78.zip |
Log some errors as error
Diffstat (limited to 'client')
-rw-r--r-- | client/src/com/vaadin/terminal/gwt/client/LayoutManager.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/client/src/com/vaadin/terminal/gwt/client/LayoutManager.java b/client/src/com/vaadin/terminal/gwt/client/LayoutManager.java index c95860a029..c00f9bd865 100644 --- a/client/src/com/vaadin/terminal/gwt/client/LayoutManager.java +++ b/client/src/com/vaadin/terminal/gwt/client/LayoutManager.java @@ -315,7 +315,7 @@ public class LayoutManager { try { cl.layoutHorizontally(); } catch (RuntimeException e) { - VConsole.log(e); + VConsole.error(e); } countLayout(layoutCounts, cl); } else { @@ -326,7 +326,7 @@ public class LayoutManager { try { rr.layout(); } catch (RuntimeException e) { - VConsole.log(e); + VConsole.error(e); } countLayout(layoutCounts, rr); } @@ -343,7 +343,7 @@ public class LayoutManager { try { cl.layoutVertically(); } catch (RuntimeException e) { - VConsole.log(e); + VConsole.error(e); } countLayout(layoutCounts, cl); } else { @@ -354,7 +354,7 @@ public class LayoutManager { try { rr.layout(); } catch (RuntimeException e) { - VConsole.log(e); + VConsole.error(e); } countLayout(layoutCounts, rr); } |