Example usage for org.springframework.ide.eclipse.boot.dash.cloudfoundry.console LogType LOCALSTDOUT

List of usage examples for org.springframework.ide.eclipse.boot.dash.cloudfoundry.console LogType LOCALSTDOUT

Introduction

In this page you can find the example usage for org.springframework.ide.eclipse.boot.dash.cloudfoundry.console LogType LOCALSTDOUT.

Prototype

LogType LOCALSTDOUT

To view the source code for org.springframework.ide.eclipse.boot.dash.cloudfoundry.console LogType LOCALSTDOUT.

Click Source Link

Usage

From source file:org.springframework.ide.eclipse.boot.dash.cloudfoundry.CloudAppDashElement.java

public void log(String message) {
    log(message, LogType.LOCALSTDOUT);
}

From source file:org.springframework.ide.eclipse.boot.dash.cloudfoundry.CloudAppDashElement.java

/**
 * Print a message to the console associated with this application.
 */
public void print(String msg) {
    print(msg, LogType.LOCALSTDOUT);
}