Example usage for com.google.gwt.eclipse.core.compile GWTCompileSettings setLogLevel

List of usage examples for com.google.gwt.eclipse.core.compile GWTCompileSettings setLogLevel

Introduction

In this page you can find the example usage for com.google.gwt.eclipse.core.compile GWTCompileSettings setLogLevel.

Prototype

public void setLogLevel(String logLevel) 

Source Link

Usage

From source file:com.myeclipsedev.gdt.eclipse.ui.internal.wizard.WebComponentExportPage.java

License:Open Source License

public GWTCompileSettings getCompileSettings() {
    GWTCompileSettings settings = new GWTCompileSettings(project);
    settings.setOutputStyle(outputStyle);
    settings.setLogLevel(logLevel);
    return settings;
}