mirror of
https://gitee.com/jmix/cuba.git
synced 2024-11-30 10:17:43 +08:00
Update Vaadin version to 7.1.0.h.M1 #PL-2224
This commit is contained in:
parent
931cf5df1c
commit
04f41f3224
@ -60,7 +60,7 @@ def desktopModule = project(':cuba-desktop')
|
||||
def uiTestModule = project(':cuba-test-ui')
|
||||
def portalModule = project(':cuba-portal')
|
||||
|
||||
def vaadinVersion = '7.1.0.h.M0'
|
||||
def vaadinVersion = '7.1.0.h.M1'
|
||||
|
||||
def servletApi = [group: 'org.apache.tomcat', name: 'servlet-api', version: '6.0.20']
|
||||
def groovyArtifact = [group: 'org.codehaus.groovy', name: 'groovy', version: '1.7.10']
|
||||
|
@ -6,7 +6,9 @@
|
||||
|
||||
package com.haulmont.cuba.web.toolkit.ui.client.logging;
|
||||
|
||||
import com.vaadin.client.VConsole;
|
||||
import java.util.logging.Level;
|
||||
import java.util.logging.LogRecord;
|
||||
import java.util.logging.Logger;
|
||||
|
||||
/**
|
||||
* @author artamonov
|
||||
@ -23,6 +25,6 @@ public class ActiveClientLogger extends ClientLogger {
|
||||
|
||||
@Override
|
||||
public void log(String message) {
|
||||
VConsole.log("[" + name + "] " + message);
|
||||
Logger.getLogger(name).log(new LogRecord(Level.INFO, message));
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user