Package org.cloudfoundry.ide.eclipse.server.core.internal.log

Examples of org.cloudfoundry.ide.eclipse.server.core.internal.log.LogContentType


  public CloudLog getCloudlog(ApplicationLog appLog) {
    if (appLog == null) {
      return null;
    }
    org.cloudfoundry.client.lib.domain.ApplicationLog.MessageType type = appLog.getMessageType();
    LogContentType contentType = APPLICATION_LOG_UNKNOWN;
    if (type != null) {
      switch (type) {
      case STDERR:
        contentType = APPLICATION_LOG_STS_ERROR;
        break;
View Full Code Here


    // be used to display pre-publish messages for the application when
    // publishing the application for the first time.
    // Do not start tailing the application console when writing to local
    // standard out as tailing is meant for application
    // log streaming and it requires the application to be published.
    LogContentType type = isError ? StandardLogContentType.STD_ERROR : StandardLogContentType.STD_OUT;

    CloudFoundryConsole serverLogTail = getApplicationLogConsole(server, appModule);

    if (serverLogTail != null) {
      if (clear) {
View Full Code Here

TOP

Related Classes of org.cloudfoundry.ide.eclipse.server.core.internal.log.LogContentType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.